Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / label10.f90
blob09bb3ab1e9ace504b1d082c312b087936b2feb4f
1 ! RUN: not %flang_fc1 -fdebug-unparse-with-symbols %s 2>&1 | FileCheck %s
2 ! CHECK: '60' not a FORMAT
3 ! CHECK: data transfer use of '60'
5 subroutine s(a)
6 real a(10)
7 write(*,60) "Hi there"
8 60 continue
9 70 format (i8)
10 end subroutine s