2 ! PR 83224 - dependency mishandling with an array constructor
3 ! Original test case by Urban Jost
6 character(len
=:),allocatable
:: words(:)
9 words
=[character(len
=3) :: 'one', 'two']
11 words
=[character(len
=n
) :: words
, 'three']
12 if (any(words
/= [ "one ", "two ", "three"])) call abort
14 end program dusty_corner