You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow for the default state of allocatable variables to be allocated with a specified value:
type my_type
integer:: i =1 ! this has "always" been possible
character(len=:),allocatable :: str ='default' ! this is not currently possible
end type my_type