1 ! RUN: %python %S/test_errors.py %s %flang_fc1
6 !ERROR: 'x' from host scoping unit is not accessible due to IMPORT
14 !ERROR: 'y' from host scoping unit is not accessible due to IMPORT
24 !ERROR: No explicit type declared for 'i'
25 real :: a(16) = [(i
, i
=1, 16)]
27 !ERROR: No explicit type declared for 'j'
28 data(b(j
), j
=1, 16) / 16 * 0.0 /
34 !ERROR: Must have INTEGER type, but is REAL(4)
35 real :: a(16) = [(x
, x
=1, 16)]
37 !ERROR: Must have INTEGER type, but is REAL(4)
38 data(b(j
), j
=1, 16) / 16 * 0.0 /