diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/interface_37.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/interface_37.f90 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/interface_37.f90 b/gcc/testsuite/gfortran.dg/interface_37.f90 new file mode 100644 index 00000000000..a39f4748ac2 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/interface_37.f90 @@ -0,0 +1,16 @@ +! { dg-do compile } +! +! PR fortran/39290 +! Subroutine/function ambiguity in generics. +! + interface q + subroutine qr(f) + implicit real(f) + external f + end subroutine + subroutine qc(f) + implicit complex(f) + external f + end subroutine ! { dg-error "Ambiguous interfaces" } + end interface q + end |