view gcc/testsuite/gfortran.dg/interface_11.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! Tests the fix for PR30883 in which interface functions and
! their results did not get an implicit type.
!
! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
!
MODULE M1
  IMPLICIT NONE
CONTAINS
  SUBROUTINE S1(F1, F2, G1, G2)
    INTERFACE
      FUNCTION F1(i, a)
      END FUNCTION F1
      FUNCTION F2(i, a)
        implicit complex (a-z)
      END FUNCTION F2
    END INTERFACE
    INTERFACE
      FUNCTION g1(i, a) result(z)
      END FUNCTION g1
      FUNCTION g2(i, a) result(z)
        implicit complex (a-z)
      END FUNCTION g2
    END INTERFACE
  END SUBROUTINE S1
END MODULE

END