summaryrefslogtreecommitdiff
path: root/Zend/tests/bug76451_2.inc
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug76451_2.inc')
-rw-r--r--Zend/tests/bug76451_2.inc8
1 files changed, 8 insertions, 0 deletions
diff --git a/Zend/tests/bug76451_2.inc b/Zend/tests/bug76451_2.inc
new file mode 100644
index 0000000000..df7cfd6645
--- /dev/null
+++ b/Zend/tests/bug76451_2.inc
@@ -0,0 +1,8 @@
+<?php
+class A {
+ public function test(Foo $foo) {}
+}
+class B extends A {
+ public function test(Bar $foo) {}
+}
+?>