mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 14:26:49 +00:00
6 lines
236 B
Fortran
6 lines
236 B
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
module acc_declare_test
|
|
! ERROR: Initialization expression cannot be converted to declared type of 'ifcondition' from LOGICAL(4)
|
|
integer(16), parameter :: ifCondition = .FALSE.
|
|
end module
|