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
2011-05-23 Tom de Vries <tom@codesourcery.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pointer_assign_6.f90
blob
0b4d8f5efa717c3930698ace360618fce892b89c
1
! { dg-do compile }
2
! { dg-options "-std=f95" }
3
! PR fortran/37580
4
!
5
program
test
6
implicit none
7
real
,
pointer
::
ptr1
(:),
ptr2
(:)
8
ptr1
(
1
:) =>
ptr2
! { dg-error "Fortran 2003: Bounds specification" }
9
end program
test