summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/redefined_intrinsic_assignment.f90
blob: 8eb47e19b8113de480f927c4889452300cc50b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { 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
 END INTERFACE
CONTAINS
 SUBROUTINE T1(I,J) ! { dg-error "redefine an INTRINSIC type assignment" }
   INTEGER, INTENT(OUT)  :: I
   INTEGER, INTENT(IN)  :: J
   I=-J
 END SUBROUTINE T1
END MODULE M1
! { dg-final { cleanup-modules "m1" } }