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 816
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 M1IMPLICIT NONEINTERFACE ASSIGNMENT(=)MODULE PROCEDURE T1 ! { dg-error "redefine an INTRINSIC type assignment" }END INTERFACECONTAINSSUBROUTINE T1(I,J)INTEGER, INTENT(OUT) :: IINTEGER, INTENT(IN) :: JI=-JEND SUBROUTINE T1END MODULE M1
