aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/pointer_assign_5.f90
blob: 1994ffebb7ef47f97e02e9554f828ca1e0445f87 (plain)
1
2
3
4
5
6
7
8
9
10
! { dg-do compile }
! PR fortran/37580

! See also the pointer_remapping_* tests.

program test
implicit none
real, pointer :: ptr1(:), ptr2(:)
ptr1(1) => ptr2 ! { dg-error "Expected bounds specification" }
end program test