DEBSOURCES
Skip Quicknav
sources / lfortran / 0.58.0-4 / tests / errors / array_bounds_check_01.f90
123456
program array_bounds_check_01 integer, allocatable :: x(:) allocate(x(10)) x = [1, 2, 3] end program