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
2014-07-12 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
derived_constructor_char_2.f90
blob
c812bceeb095dd7a803bda930c9458f4df2a06ff
1
! { dg-do compile }
2
! { dg-options "-fdump-tree-original" }
3
!
4
! PR fortran/44857
5
!
6
!
7
8
Type
::
t
9
character
(
len
=
5
) ::
txt
(
2
)
10
End Type
11
character
(
len
=
5
) ::
str
(
2
) = [
"12345"
,
"67890"
]
12
Type
(
t
) ::
tt
=
t
( [
str
] )
! { dg-error "does not reduce to a constant" }
13
End