You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
157 B
9 lines
157 B
4 months ago
|
! RUN: %f18 -E -DFOO=1 -DBAR=2 %s | FileCheck %s
|
||
|
|
||
|
! CHECK: integer :: a = 1
|
||
|
integer :: a = FOO
|
||
|
! CHECK: integer :: b = 2
|
||
|
integer :: b = BAR
|
||
|
|
||
|
end program
|