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
Increase timeout factor for hppa*-*-* in gcc.dg/long_branch.c
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
class_array_8.f03
blob
1e28c88ac3b13904f042b6e75ce3c3a40e33c14b
1
! { dg-do run }
2
! PR43969 - class array implementation
3
!
4
! Contributed by Janus Weil <janus@gcc.gnu.org>
5
!
6
implicit none
7
8
type indx_map
9
end type
10
11
type desc_type
12
class(indx_map), allocatable :: indxmap(:)
13
end type
14
15
type(desc_type) :: desc
16
if (allocated(desc%indxmap)) STOP 1
17
18
end