xref: /llvm-project/flang/test/Semantics/implicit05.f90 (revision 6c1ac141d3c98af9738bc77fcb55602cbff7751f)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2subroutine s
3  !ERROR: 'a' does not follow 'b' alphabetically
4  implicit integer(b-a)
5end
6