aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pointer_init_12.f90
blob: b2bce01ab577d8bfbad4c31194c9ed5737b537db (plain)
1
2
3
4
5
6
7
8
! { dg-do compile }
! PR 94347 - this used to cause an ICE.
! Original test case by "Serghei".
program main
    character(10), target :: a
    character(:), pointer :: p => null()
    p => a
end program main