Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr20086.f90
blobe5759da3dc11c6e09e094a68021c8353cebf6375
1 ! { dg-do run }
2 ! PR 20086 - Missing characters in output with hollerith strings
3 implicit none
4 character*80 line
5 write(line,2070)
6 if (line.ne.' stiffness reformed for this high step')call abort
7 write(line,2090)
8 if (line.ne.' stiffness reformed for hello hello')call abort
9 stop
11 2070 format (2x,37hstiffness reformed for this high step)
12 2090 format (2x,34hstiffness reformed for hello hello)
14 end