blob: 4a202b405c4cb36bd05ebefbe98f08508f2dc413 (
plain)
1
2
3
4
5
6
7
|
! { dg-do compile }
! PR fortran/95503 - ICE in gfc_is_simply_contiguous
program p
complex, target :: a
real, pointer, contiguous :: b => a%re ! { dg-error "not an array pointer" }
end
|