Files
CMake/Tests/FortranOnly/preprocess2.f
Brad King 0d0a94bcfb Tests: Fix Fortran syntax for initialized variable
LFortran 0.44 errors without the `::`.
2025-01-22 08:51:44 -05:00

7 lines
174 B
Fortran

#define int INTEGER
! This single unmatched quote ' should not cause an error during compilation
PROGRAM PREPRO
int :: f = 1
PRINT*, f
END