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