diff options
author | Brad King <brad.king@kitware.com> | 2008-03-28 18:04:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-03-28 18:04:52 (GMT) |
commit | 71d292d087cb947c5d85772cbcc5a21f665716d8 (patch) | |
tree | 30c3c1f6512140c00b9b16c3f2b2eaef44318950 /Tests/Fortran | |
parent | d71c6ba49a4e44d4c93ffbefc597d4d7c5aef183 (diff) | |
download | CMake-71d292d087cb947c5d85772cbcc5a21f665716d8.zip CMake-71d292d087cb947c5d85772cbcc5a21f665716d8.tar.gz CMake-71d292d087cb947c5d85772cbcc5a21f665716d8.tar.bz2 |
BUG: Fix Fortran test to use more portable comment syntax in fixed format source.
Diffstat (limited to 'Tests/Fortran')
-rw-r--r-- | Tests/Fortran/test_use_in_comment_fixedform.f | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Fortran/test_use_in_comment_fixedform.f b/Tests/Fortran/test_use_in_comment_fixedform.f index e670939..39f486b 100644 --- a/Tests/Fortran/test_use_in_comment_fixedform.f +++ b/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 |