1 ! RUN: %S/test_errors.sh %s %t %flang_fc1
6 !ERROR: Cannot reference function 'str' as data
7 print *, str(1:9), str(7)
11 !ERROR: Cannot reference function 'str1' as data
12 print *, str1(1:9), str1(7)
13 !ERROR: 'str2' is not an array
14 print *, str2(1:9), str2(7)
15 !ERROR: Cannot reference function 'str3' as data
16 print *, str3(7), str3(1:9)
22 !ERROR: Cannot reference function 'func' as data
23 print *, func(7), func(1:9)
28 !ERROR: Cannot reference function 'func' as data
29 print *, func(7), func(1:6)
35 !ERROR: Cannot reference function 'local' as data
36 print *, local(1:6), local(7)
37 !ERROR: Cannot reference function 'local1' as data
38 print *, local1(7), local1(1:6)