blob: 788b413c447a2dc908243d9a1044d7d2de32b0c1 (
plain)
1
2
3
4
5
6
7
8
9
|
! { dg-do compile }
! PR fortran/91959
! Code contributed by Gerhard Steinmetz
program p
implicit none
integer :: %a ! { dg-error "Invalid character" }
a = 1 ! { dg-error "has no IMPLICIT type" }
print *, a
end
|