aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/argument_checking_16.f90
blob: 75b2eced122f23143c583163772f92e21ef5a019 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! PR fortran/35152 - implicit procedure with keyword=argument

external bar

call bar(a=5)       ! { dg-error "requires explicit interface" }
call foo(a=5)       ! { dg-error "requires explicit interface" }
end