nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / der_pointer_4.f90
blobec48146736916f17fe9dd8e0cc686a6670ec91b9
1 ! { dg-do compile }
2 ! PR 24426
3 ! Pointer-components of derived type with initialized components
4 module crash
5 implicit none
6 type foo
7 integer :: i = 0
8 type (foo), pointer :: next
9 end type foo
10 type (foo), save :: bar
11 end module crash