xref: /llvm-project/flang/test/Semantics/implicit04.f90 (revision 6c1ac141d3c98af9738bc77fcb55602cbff7751f)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2subroutine s
3  parameter(a=1.0)
4  !ERROR: IMPLICIT NONE statement after PARAMETER statement
5  implicit none
6end subroutine
7