blob: a04d7e6dd1575a1a835d6f5086f3ea9b47a7a30e [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %flang_fc1
! REQUIRES: shell
module m1
end
subroutine sub
end
use m1
!ERROR: Cannot read module file for module 'm2': Source file 'm2.mod' was not found
use m2
!ERROR: 'sub' is not a module
use sub
end