blob: 5a369c47934ca8eb74ca92c854967288eb032222 [file] [edit]
!RUN: %python %S/test_errors.py %s %flang_fc1
subroutine a
contains
subroutine b
contains
!ERROR: An internal subprogram may not contain an internal subprogram
subroutine c
end
end
end
program p
contains
subroutine b
contains
!ERROR: An internal subprogram may not contain an internal subprogram
subroutine c
end
end
end