aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/transfer_resolve_2.f90
blob: b6c5ddd347f62bdd2016fb370d70db7795dba72c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-do compile }
!
! PR fortran/56079
!
! Contributed by  Thomas Koenig
!
program gar_nichts
   use ISO_C_BINDING
   use ISO_C_BINDING, only: C_PTR
   use ISO_C_BINDING, only: abc => C_PTR
   use ISO_C_BINDING, only: xyz => C_PTR
   type(xyz) nada
   nada = transfer(C_NULL_PTR,nada)
end program gar_nichts