re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr15754.f90
blob1b9259e80c699b8246ddc7d16050f4fbaf4a923f
1 ! we didn't give a warning if the RHS of an assignment was NULL
2 ! { dg-do compile }
3 INTEGER, POINTER :: P
4 I = NULL() ! { dg-error "NULL appears" "Assignment non-pointer = NULL" }
5 P = NULL() ! { dg-error "NULL appears" "Assignment pointer = NULL" }
6 P => NULL()
7 END