DEBSOURCES
Skip Quicknav
sources / lfortran / 0.60.0-1 / integration_tests / read_05.f90
123456789
program main implicit none character(len=10) :: x ! Accept READ with format literal and no unit if (.false.) then read '(A)', x end if print *, 'ok' end program