Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / modfile54.f90
bloba8efefe127d0337427398bff1e5a60ef05f27a8a
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 !ERROR: Some modules in this compilation unit form one or more cycles of dependence
3 module m1
4 use m2
5 end
7 !PORTABILITY: A USE statement referencing module 'm2' appears earlier in this compilation unit
8 module m2
9 use m3
10 end
12 !PORTABILITY: A USE statement referencing module 'm3' appears earlier in this compilation unit
13 module m3
14 use m1
15 end