aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr15754.f90
blob: f595d6e2ac62e19696c502dd11d000e1322b7970 (plain)
1
2
3
4
5
6
7
! we didn't give a warning if the RHS of an assignment was NULL
! { dg-do-compile }
INTEGER, POINTER :: P
I = NULL() ! { dg-error "NULL appears" "Assignment non-pointer = NULL" }
P = NULL() ! { dg-error "NULL appears" "Assignment pointer = NULL" }
P => NULL()
END