re PR fortran/38094 (gfortran.dg/private_type_4.f90 -O doesn't work)

2008-11-12  Tobias Burnus  <burnus@net-b.de>

        PR fortran/38094
        * gfortran.dg/private_type_4.f90: Fix dg-error pattern.

From-SVN: r141811
This commit is contained in:
Tobias Burnus 2008-11-12 23:27:10 +01:00 committed by Tobias Burnus
parent 084eb83032
commit 63b0fc00a4
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-11-12 Tobias Burnus <burnus@net-b.de>
PR fortran/38094
* gfortran.dg/private_type_4.f90: Fix dg-error pattern.
2008-11-12 Jakub Jelinek <jakub@redhat.com>
PR c++/36478

View file

@ -14,7 +14,7 @@ module m1
contains
type(t1) function f1() ! { dg-error "cannot be of PRIVATE type" }
type(t1) function f1() ! { dg-error "of PRIVATE derived type" }
end function
end module