c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / repeat_6.f90
blobc2426b1374a7757cc48c555dc4ec46935f2557cf
1 ! { dg-do run }
3 ! PR34559 -- ICE on empty string literals
5 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
8 character(len=200) :: string = "a" // repeat ("", 3) &
9 // repeat ("xxx", 0) &
10 // repeat ("string", 2)
12 if (string /= "astringstring") STOP 1
13 end