bpf: create modifier for mem operand for xchg and cmpxchg
[official-gcc.git] / gcc / testsuite / gfortran.dg / namelist_print_2.f
blobcc1df5b9b2a22d3bc84559e668f4f581ae4067e2
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