Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/pr65903.f90 @ 145:1830386684a0
gcc-9.2.0
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 11:34:05 +0900 |
parents | 84e7813d76e9 |
children |
line wrap: on
line source
! { dg-do run } ! { dg-options "-std=gnu" } ! character(20) :: astring 100 format ("& notblank !") 200 format ("& !") 300 format ("&!") write(astring,100) if (astring.ne."& notblank !") STOP 1 !print *, astring write(astring,200) if (astring.ne."& !") STOP 2 !print *, astring write(astring,300) if (astring.ne."&!") STOP 3 !print *, astring end