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
/
default_initialization_7.f90
blob
fc8be98b113556732afb00c070e92fa5919e788f
1
! { dg-do compile }
2
!
3
! PR fortran/57033
4
! ICE on a structure constructor of an extended derived type whose parent
5
! type last component has a default initializer
6
!
7
! Contributed by Tilo Schwarz <tilo@tilo-schwarz.de>
8
9
program
ice
10
11
type
m
12
integer
i
13
logical
::
f
= .
false
.
14
end type
m
15
16
type
,
extends
(
m
) ::
me
17
end type
me
18
19
type
(
me
)
meo
20
21
meo
=
me
(
1
)
! ICE
22
end program
ice