1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 ! C726 The length specified for a character statement function or for a
3 ! statement function dummy argument of type character shall be a constant
6 implicit character(len
=3) (c
)
7 implicit character(len
=*) (d
)
10 !ERROR: An assumed (*) type parameter may be used only for a (non-statement function) dummy argument, associate name, character named constant, or external function result
11 cStmtFunc3 (dummy
) = "abc"
12 !ERROR: An assumed (*) type parameter may be used only for a (non-statement function) dummy argument, associate name, character named constant, or external function result
13 dStmtFunc3 (x
) = "abc"