DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / error_stop_02.f90
1234567891011121314151617
program error_stop_02 implicit none integer :: x x = 5 print *, x x = x + 2 print *, x error stop x = x + 2 print *, x end program