2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / generic_28.f90
blob5ddc9798f9803acc9a7e50cfc2f39b9b2b41f207
1 ! { dg-do compile }
3 ! PR 58998: [4.8/4.9 Regression] Generic interface problem with gfortran
5 ! Contributed by Paul van Delst
7 interface iargc
8 procedure iargc_8
9 end interface
11 contains
13 integer(8) function iargc_8()
14 integer(4) iargc
15 iargc_8 = iargc()
16 end function
18 end