Commit 61ebeccf by Tobias Schlüter Committed by Tobias Schlüter

* gfortran.dg/implicit_1.f90: New test.

From-SVN: r84376
parent e4314fac
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
PR fortran/15978 PR fortran/15978
* gfortran.fortran-torture/compile/implicit_2.f90: New test. * gfortran.fortran-torture/compile/implicit_2.f90: New test.
* gfortran.dg/implicit_1.f90: New test.
2004-07-09 David Billinghurst (David.Billinghurst@riotinto.com) 2004-07-09 David Billinghurst (David.Billinghurst@riotinto.com)
* lib/gfortran-dg.exp (gfortran-dg-test): Adapt regular * lib/gfortran-dg.exp (gfortran-dg-test): Adapt regular
......
! { dg-do compile }
! PR 13575 -- we used to not see that c0 has no type, and then ICE later
module AHFinder_dat
implicit none
save c0 ! { dg-error "no IMPLICIT type" "no IMPLICIT type" }
end module AHFinder_dat
! PR 15978 -- we used to not see that aaa has no type, and then ICE later
implicit none
common/rommel/aaa ! { dg-error "no IMPLICIT type" "no IMPLICIT type" }
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment