DEBSOURCES
Skip Quicknav
sources / lfortran / 0.58.0-3 / tests / errors / array_04.f90
12345678910
program array_04 implicit none type :: t integer :: a end type type(t) :: b b%a(:) = 1 end program