Tests: Fix Fortran syntax for initialized variable

LFortran 0.44 errors without the `::`.
This commit is contained in:
Brad King 2025-01-22 08:49:24 -05:00
parent 7a39d926e8
commit 0d0a94bcfb

View File

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