URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [redefined_intrinsic_assignment.f90] - Rev 827
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
! Tests the fix for PR25077 in which no diagnostic was produced
! for the redefinition of an intrinsic type assignment.
!
! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
!
MODULE M1
IMPLICIT NONE
INTERFACE ASSIGNMENT(=)
MODULE PROCEDURE T1 ! { dg-error "redefine an INTRINSIC type assignment" }
END INTERFACE
CONTAINS
SUBROUTINE T1(I,J)
INTEGER, INTENT(OUT) :: I
INTEGER, INTENT(IN) :: J
I=-J
END SUBROUTINE T1
END MODULE M1
Go to most recent revision | Compare with Previous | Blame | View Log