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
/
coarray_46.f90
blob
273c6e86840d889aced074e00d9c503a8e5fdad1
1
! { dg-do compile }
2
! { dg-options "-fcoarray=lib -lcaf_single" }
3
!
4
! Test the fix for PR83319
5
!
6
module
foo_module
7
implicit none
8
type
foo
9
integer
,
allocatable
::
i
(:)
10
end type
11
end module
12
13
use
foo_module
14
implicit none
15
type
(
foo
),
save
::
bar
[*]
16
allocate
(
bar
%
i
(
1
))
! Used to ICE here.
17
end