blob: 94e6620a0ee01566c042c2e2c6a064cfc14190bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
! { dg-do compile }
! PR fortran/107577 - ICE in find_array_spec
! Contributed by G.Steinmetz
program p
implicit none
associate (y => f(4)) ! { dg-error "has no IMPLICIT type" }
if (lbound (y, 1) /= 1) stop 1 ! { dg-error "Invalid array reference" }
if (y(1) /= 1) stop 2 ! { dg-error "Invalid array reference" }
end associate
end
! { dg-error "has no type" " " { target *-*-* } 7 }
|