nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr43688.f90
blobface02212b8f368e9b9b33c9b56767d7f907237d
1 ! { dg-do compile }
2 ! { dg-options "-O0 -fipa-reference" }
4 subroutine sub
5 type :: a
6 integer :: i = 42
7 end type a
8 type(a), target :: dt(2)
9 integer, pointer :: ip(:)
10 ip => dt%i
11 end subroutine