repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-07-12 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pointer_assign_5.f90
blob
1994ffebb7ef47f97e02e9554f828ca1e0445f87
1
! { dg-do compile }
2
! PR fortran/37580
3
4
! See also the pointer_remapping_* tests.
5
6
program
test
7
implicit none
8
real
,
pointer
::
ptr1
(:),
ptr2
(:)
9
ptr1
(
1
) =>
ptr2
! { dg-error "Expected bounds specification" }
10
end program
test