Commit d6145406 by Tobias Burnus Committed by Tobias Burnus

re PR fortran/34690 (gfortran.dg/elemental_args_check_2.f90 doesn't work)

2008-01-06  Tobias Burnus  <burnus@net-b.de>

       PR fortran/34690
       * gfortran.dg/elemental_args_check_2.f90: Fix test case.

From-SVN: r131362
parent dfd50342
2008-01-06 Tobias Burnus <burnus@net-b.de> 2008-01-06 Tobias Burnus <burnus@net-b.de>
PR fortran/34690
* gfortran.dg/elemental_args_check_2.f90: Fix test case.
2008-01-06 Tobias Burnus <burnus@net-b.de>
PR fortran/34689 PR fortran/34689
* gfortran.dg/intent_out_4.f90: Fix test case. * gfortran.dg/intent_out_4.f90: Fix test case.
...@@ -8,10 +8,10 @@ ...@@ -8,10 +8,10 @@
MODULE M1 MODULE M1
IMPLICIT NONE IMPLICIT NONE
CONTAINS CONTAINS
PURE ELEMENTAL SUBROUTINE S1(I,F) PURE ELEMENTAL SUBROUTINE S1(I,F) ! { dg-error "Dummy procedure 'f' not allowed in elemental procedure" }
INTEGER, INTENT(IN) :: I INTEGER, INTENT(IN) :: I
INTERFACE INTERFACE
PURE INTEGER FUNCTION F(I) ! { dg-error "Dummy procedure 'f' not allowed in elemental procedure" } PURE INTEGER FUNCTION F(I)
INTEGER, INTENT(IN) :: I INTEGER, INTENT(IN) :: I
END FUNCTION F END FUNCTION F
END INTERFACE END INTERFACE
......
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