Browse Source

BUG: Fix Fortran test to use more portable comment syntax in fixed format source.

Brad King 18 years ago
parent
commit
71d292d087
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Tests/Fortran/test_use_in_comment_fixedform.f

+ 3 - 3
Tests/Fortran/test_use_in_comment_fixedform.f

@@ -1,7 +1,7 @@
       PROGRAM foo
-C     USE bar       
-C     use bar       
-C     Use bar       
+!     USE bar
+!     use bar
+!     Use bar
 
       WRITE(*,*) 'Hello, Fortran world.'
       END PROGRAM