diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/data_array_6.f')
-rw-r--r-- | gcc/testsuite/gfortran.dg/data_array_6.f | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/data_array_6.f b/gcc/testsuite/gfortran.dg/data_array_6.f new file mode 100644 index 000000000..64b492bc2 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/data_array_6.f @@ -0,0 +1,19 @@ +! { dg-do compile } +! +! PR fortran/38404 - location marker in wrong line +! Testcase contributed by Steve Chapel <steve DOT chapel AT a2pg DOT com> +! + + CHARACTER(len=72) TEXT(3) + DATA (TEXT(I),I=1,3)/ + &'a string without issues', + &'a string with too many characters properly broken into the next + &line but too long to fit the variable', + & ' + &a string that started just at the end of the last line -- some + &may not be helped'/ + + ! { dg-warning "truncated" "" { target *-*-* } 10 } + ! { dg-warning "truncated" "" { target *-*-* } 12 } + + END |