blob: ef59e43c6b37e41b63855eb9e8e52627dc456d72 [file] [log] [blame] [edit]
! RUN: %python %S/test_errors.py %s %flang_fc1
module m
use iso_c_binding
!ERROR: CDEFINED variable cannot be initialized
integer(c_int), bind(C, name='c_global', CDEFINED) :: c = 42
end