DEBSOURCES
Skip Quicknav
sources / lfortran / 0.60.0-2 / tests / errors / scalar_allocation_check_05.f90
1234567891011
program scalar_allocation_check_05 implicit none type m integer, allocatable :: x end type type(m) :: m1 print *, m1%x end