aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/generic_28.f90
blob: 5ddc9798f9803acc9a7e50cfc2f39b9b2b41f207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { dg-do compile }
!
! PR 58998: [4.8/4.9 Regression] Generic interface problem with gfortran
!
! Contributed by Paul van Delst

  interface iargc
    procedure iargc_8
  end interface
  
contains

  integer(8) function iargc_8()
    integer(4) iargc
    iargc_8 = iargc()
  end function
  
end