aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/nullify_2.f90
blob: 893ac2408f5f29d1f186235b5e59d9f1743e2d5d (plain)
1
2
3
4
5
6
7
! { dg-do compile }
! PR fortran/25146
program i
   implicit none
   TYPE (a) t1     ! { dg-error "is being used before" }
   nullify(t1%x)   ! { dg-error "Symbol 't1' at .1. has no IMPLICIT type" }
end program