xref: /llvm-project/flang/test/Semantics/label09.f90 (revision 96d229c9abdfb2836e18a554bfb63b5d52aeebfa)
1! RUN: not %flang_fc1 -fdebug-unparse-with-symbols %s 2>&1 | FileCheck %s
2! CHECK: Label '60' was not found
3
4subroutine s(a)
5  real a(10)
6  write(*,60) "Hi there"
7end subroutine s
8