re PR fortran/88072 (gfortran crashes with an internal compiler error)

2019-08-13  Steven G. Kargl  <kargl@gcc.gnu.org> 

	PR fortran/88072
	* gfortran.dg/unlimited_polymorphic_28.f90: Fix error message.  Left
	out of previous commit!

From-SVN: r274400
This commit is contained in:
Steven G. Kargl 2019-08-13 20:13:59 +00:00
parent 34342ea3f9
commit abb1d111f9
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2019-08-13 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/88072
* gfortran.dg/unlimited_polymorphic_28.f90: Fix error message. Left
out of previous commit!
2019-08-13 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/88072

View file

@ -21,7 +21,7 @@ implicit none
type,abstract,extends(c_base) :: c_derived
contains
procedure :: f_base => f_derived ! { dg-error "Type mismatch in function result \\(CLASS\\(\\*\\)/CLASS\\(c_base\\)\\)" }
procedure :: f_base => f_derived ! { dg-error "Type mismatch in function result" }
end type c_derived
contains