(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
print_2.f90
! { dg-do compile }
! PR52564 Accepts invalid: Missing I/O list after comma 
program printbug
  print *, 'hello world'
! the following line should not compile:
  print *,  ! { dg-error "not allowed" }
end program