blob: 63696dfac0b6301b1f9334b5dfdd86cb3095c384 [file] [edit]
!RUN: %python %S/test_errors.py %s %flang_fc1
interface
subroutine sub(x)
real x
namelist /useless/x ! ok, but don't crash
!ERROR: 'sub' is not a variable
namelist /bad/sub
end
end interface
end