blob: 8f0b2666497315065292a902f24180ec6a688db5 [file] [log] [blame]
! { dg-do compile }
!
! A null dereference fixed
!
! Contributed by Daniel Otero <canu7@yahoo.es>
!
subroutine foo (rvec)
TYPE vec_rect_2D_real_acc
INTEGER :: arr
END TYPE
CLASS(vec_rect_2D_real_acc) rvec
ASSOCIATE (arr=>rvec%arr)
call bar(arr*arr)
end associate
end