aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/misplaced_implicit_character.f90
blob: fc79b80d0f45754ac8b85861f5a2bd82d120fcd5 (plain)
1
2
3
4
5
6
7
8
! { dg-do compile }
! PR fortran/69963
subroutine s
  real x ! { dg-error "" }
  implicit character (a) ! { dg-error "IMPLICIT statement at .1. cannot follow data declaration statement at .2." }
  x = 1
  a = 'a'
end subroutine s