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
2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
der_ptr_component_1.f90
blob
0f76cc15875b171a317015bfa08423a68b45998f
1
! { dg-do compile }
2
! PR 19929
3
! Deallocation of pointer components of derived type arrays
4
program
der_ptr_component
5
type
::
t
6
integer
,
pointer
::
p
7
end type
t
8
type
(
t
) ::
a
(
1
)
9
10
allocate
(
a
(
1
)%
p
)
11
deallocate
(
a
(
1
)%
p
)
12
13
end program
der_ptr_component