From 0d0a94bcfbbef0bd39bb5f1e10481881e6694f99 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 22 Jan 2025 08:49:24 -0500 Subject: [PATCH] Tests: Fix Fortran syntax for initialized variable LFortran 0.44 errors without the `::`. --- Tests/FortranOnly/preprocess2.f | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/FortranOnly/preprocess2.f b/Tests/FortranOnly/preprocess2.f index 3b332c4369..a772259346 100644 --- a/Tests/FortranOnly/preprocess2.f +++ b/Tests/FortranOnly/preprocess2.f @@ -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