1 ! Check that null initialization of pointer variable works.
7 type(t
), pointer :: a
=> NULL()
8 real, pointer :: b
=> NULL()
9 character, pointer :: c
=> NULL()
10 integer, pointer, dimension(:) :: d
=> NULL()
11 if (associated(a
)) call abort()
12 if (associated(b
)) call abort()
13 if (associated(c
)) call abort()
14 if (associated(d
)) call abort()