2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / namelist_print_2.f
blobc37e3591d17fb3527b9b362b7e7bebc511a0083f
1 ! Test Non standard PRINT namelist - PR21432 is
2 ! not accepted by -std=f95
4 ! Contributor Paul Thomas <pault@gcc.gnu.org>
6 ! { dg-do compile }
7 ! { dg-options "-std=f95" }
9 real x
10 namelist /mynml/ x
11 x = 1
12 print mynml ! { dg-error "PRINT namelist.*extension" "" }
13 end