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