summaryrefslogtreecommitdiff
path: root/flang/test/Semantics/structconst07.f90
blob: a34289a817af4416f5ad84428fcd5eade93a37ad (plain)
1
2
3
4
5
6
7
8
9
! RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
type :: hasPointer
  class(*), pointer :: sp
end type
type(hasPointer) hp
!CHECK: hp=haspointer(sp=NULL())
hp = hasPointer()
end