Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gfortran.dg / save_parameter.f90
blobdd879bb869d0b6625f17497a0088b74066ce6122
1 ! { dg-do compile }
2 ! PR fortran/32633 - implied SAVE conflicts with parameter attribute
3 ! Testcase contributed by: Joost VandeVondele <jv244@cam.ac.uk>
5 MODULE test
6 CHARACTER(len=1), PARAMETER :: backslash = '\\'
7 PUBLIC :: backslash
8 END MODULE
10 ! { dg-final { cleanup-modules "test" } }