2 ! Test the fix for PR47523 in which concatenations did not work
3 ! correctly with assignments to deferred character length scalars.
5 ! Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>
9 character(:), allocatable :: a, b
11 if (a .ne. 'a') call abort
13 if (a .ne. 'ax') call abort
14 if (len (a) .ne. 2) call abort
16 if (a .ne. 'x') call abort
17 if (len (a) .ne. 1) call abort