3 ! PR 43207: [OOP] ICE for class pointer => null() initialization
5 ! Original test case by Tobias Burnus <burnus@gcc.gnu.org>
6 ! Modified by Janus Weil <janus@gcc.gnu.org>
11 type(parent), target :: t
12 class(parent), pointer :: cp => null()
14 if (associated(cp)) call abort()
16 if (.not. associated(cp)) call abort()