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
hppa64: Fix fmt_f_default_field_width_3.f90 and fmt_g_default_field_width_3.f90
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
repeat_6.f90
blob
c2426b1374a7757cc48c555dc4ec46935f2557cf
1
! { dg-do run }
2
!
3
! PR34559 -- ICE on empty string literals
4
!
5
! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
6
!
7
8
character
(
len
=
200
) ::
string
=
"a"
//
repeat
(
""
,
3
) &
9
//
repeat
(
"xxx"
,
0
) &
10
//
repeat
(
"string"
,
2
)
11
12
if
(
string
/=
"astringstring"
)
STOP
1
13
end