PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / dec_parameter_3.f90
blob92f0f61bb6606ae4937310331ff5ff60a66e67c1
1 ! { dg-do compile }
2 ! { dg-options "-ffree-form -std=gnu" }
4 ! Test warnings for DEC-style PARAMETER statements with std=gnu.
7 subroutine sub()
8 implicit real(8) (A-Z)
9 parameter pi = 3.1415926535d0 ! { dg-warning "Legacy Extension: PARAMETER" }
10 print *, pi
11 end subroutine
13 end