aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/typebound_generic_13.f03
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gfortran.dg/typebound_generic_13.f03')
-rw-r--r--gcc-4.9/gcc/testsuite/gfortran.dg/typebound_generic_13.f0328
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gfortran.dg/typebound_generic_13.f03 b/gcc-4.9/gcc/testsuite/gfortran.dg/typebound_generic_13.f03
new file mode 100644
index 000000000..c2116e965
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gfortran.dg/typebound_generic_13.f03
@@ -0,0 +1,28 @@
+! { dg-do compile }
+!
+! PR 47710: [OOP] Improve ambiguity check for GENERIC TBP w/ PASS and NOPASS
+!
+! Contributed by Janus Weil <janus@gcc.gnu.org>
+
+module m
+
+ type base_t
+ contains
+ procedure, nopass :: baseproc_nopass => baseproc1
+ procedure, pass :: baseproc_pass => baseproc2
+ generic :: some_proc => baseproc_pass, baseproc_nopass ! { dg-error "are ambiguous" }
+ end type
+
+contains
+
+ subroutine baseproc1 (this)
+ class(base_t) :: this
+ end subroutine
+
+ subroutine baseproc2 (this, that)
+ class(base_t) :: this, that
+ end subroutine
+
+end module
+
+! { dg-final { cleanup-modules "m" } }