blob: 874ef8ba9ecd8c97336d7bb6d7d21437e640844f [file] [log] [blame]
! { dg-do compile }
program cont_01_neg
implicit none
real, pointer, contiguous :: r(:)
real, pointer, contiguous :: r2(:,:)
real, target :: x(45)
real, target :: x2(5,9)
integer :: i
integer :: n=1
x = (/ (real(i),i=1,45) /)
x2 = reshape(x,shape(x2))
r => x(::3)
r2 => x2(2:,:)
r2 => x2(:,2:3)
r => x2(2:3,1)
r => x(::1)
r => x(::n)
end program