repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gfortran.dg
/
der_pointer_2.f90
blob
3749fc24ff83c44f0a14e93db493405efd30b860
1
! { dg-do compile }
2
! PR 15975, PR 16606
3
! Pointers to derived types with initialized components
4
!
5
! Contributed by Erik Edelmann <erik.edelmann@iki.fi>
6
!
7
SUBROUTINE
N
8
TYPE
T
9
INTEGER
::
I
=
99
10
END TYPE
T
11
TYPE
(
T
),
POINTER
::
P
12
TYPE
(
T
),
TARGET
::
Q
13
P
=>
Q
14
if
(
P
%
I
.
ne
.99
)
call
abort
()
15
END SUBROUTINE
N
16
17
program
test_pr15975
18
call
n
()
19
end program
test_pr15975
20