1! { dg-do compile }
2! PR 23661 Make sure space between PRINT and variable name is enforced in
3! free form.
4! Also tests the namelist case
5character(5) :: f = "(a)"
6real  x
7namelist /mynml/ x
8printf, "check" ! { dg-error "Unclassifiable" }
9x = 1
10printmynml ! { dg-error "" }
11end
12