DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / arrays_26.f90
123456789
program arrays_26 type :: my_struct integer :: i end type type(my_struct), allocatable :: s(:) allocate(s(1)) s(1)%i = 5 if (s(1)%i /= 5) error stop end program