* gfortran.dg/bind_c_module.f90: Adjust expected error messages.

From-SVN: r135530
This commit is contained in:
Francois-Xavier Coudert 2008-05-19 14:01:40 +00:00 committed by François-Xavier Coudert
parent bfe69700db
commit 2c0846e4f5
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2008-05-19 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* gfortran.dg/bind_c_module.f90: Adjust expected error messages.
2008-05-19 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* gfortran.dg/char_cast_1.f90: Adjust count in scanning the tree

View File

@ -10,13 +10,13 @@ module b
use iso_c_binding
use a
implicit none
bind(c) :: a ! { dg-error "attribute applied to" }
bind(c) :: a ! { dg-error "applied to" }
end module b
! Causes ICE
module d
use a
implicit none
bind(c) :: a ! { dg-error "attribute applied to" }
bind(c) :: a ! { dg-error "applied to" }
end module d
! { dg-final { cleanup-modules "a" } }