3 ! Check the test for PR69422, in which the allocatable component 'Source'
4 ! of the pointer component 'P' was not automatically (re)allocated on
7 ! Contributed by Anthony Lewis <antony@cosmologist.info>
13 character(LEN=:), allocatable :: source
28 X%P%Source = 'test string'
29 if (.not.allocated (X%P%Source)) call abort
30 if (X%P%Source .ne. 'test string') call abort