2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / namelist_75.f90
blobc88da65d6b2c030d2835cf5ee360e7002ad383ec
1 ! { dg-do compile }
3 ! Tests a write-after-free memory error fix in gfc_undo_symbols
5 program test_nml
7 namelist /foo/ bar, baz
8 namelist /foo/ wrong, , ! { dg-error "Syntax error in NAMELIST" }
10 end program test_nml