(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
dec_exp_3.f90
! { dg-do run "xfail *-*-*" }
! { dg-options "" }
!
! Make sure we still see an error for missing exponents without -fdec.
!

implicit none

real :: r
character(2) :: s
s = '8e'

read (s, *) r ! { XFAIL "Bad real number" }

end