xref: /llvm-project/flang/test/Semantics/modfile54.f90 (revision 1c91d9bdea3b6c38e8fbce46ec8181a9c0aa26f8)
1! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic
2!ERROR: Some modules in this compilation unit form one or more cycles of dependence
3module m1
4  use m2
5end
6
7!PORTABILITY: A USE statement referencing module 'm2' appears earlier in this compilation unit
8module m2
9  use m3
10end
11
12!PORTABILITY: A USE statement referencing module 'm3' appears earlier in this compilation unit
13module m3
14  use m1
15end
16