re PR fortran/71860 ([OOP] ICE on pointing to null(mold), verify_gimple failed)

2019-02-06  Thomas Koenig  <tkoenig@gcc.gnu.org>

	PR fortran/71860
	* gfortran.dg/null_10.f90: New test.

From-SVN: r268590
This commit is contained in:
Thomas Koenig 2019-02-06 20:34:42 +00:00
parent aa9dc19314
commit 16e2bcd5b9
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2019-02-06 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/71860
* gfortran.dg/null_10.f90: New test.
2019-02-06 David Malcolm <dmalcolm@redhat.com>
PR c++/71302

View File

@ -0,0 +1,7 @@
! { dg-do compile }
! PR 71860 - this used to ICE
! Original test case by Gerhard Steinmetz
program p
class(*), pointer :: z
z => null(z)
end