DEBSOURCES
Skip Quicknav
sources / lfortran / 0.60.0-2 / tests / errors / scalar_allocation_check_01.f90
12345678910
program scalar_allocation_check_01 implicit none integer, allocatable :: x integer, allocatable :: z integer :: y y = x + z end program