[PR rtl-optimization/115876] Fix one of two ubsan reported issues in new ext-dce...
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_error_7.f
blob3937c8fe7507f608a1a229ea647feba111bc118b
1 ! { dg-do compile }
2 ! { dg-options "-std=f95" }
4 ! PR37446 Diagnostic of edit descriptors, esp. EN
5 character(40) :: fmt_string
6 write(*, '(1P,2E12.4)') 1.0
7 write(*,'(EN)') 5.0 ! { dg-error "positive width required" }
8 write(*,'("abcdefg",EN6,"hjjklmnop")') 5.0 ! { dg-error "Period required" }
9 end