summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/bug65576a.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/traits/bug65576a.phpt')
-rw-r--r--Zend/tests/traits/bug65576a.phpt31
1 files changed, 31 insertions, 0 deletions
diff --git a/Zend/tests/traits/bug65576a.phpt b/Zend/tests/traits/bug65576a.phpt
new file mode 100644
index 000000000..49b2ba0c9
--- /dev/null
+++ b/Zend/tests/traits/bug65576a.phpt
@@ -0,0 +1,31 @@
+--TEST--
+Bug #65576 (Constructor from trait conflicts with inherited constructor)
+--FILE--
+<?php
+
+trait T
+{
+ public function __construct()
+ {
+ echo "Trait contructor\n";
+ }
+}
+
+class A
+{
+ public function __construct()
+ {
+ echo "Parent constructor\n";
+ }
+}
+
+class B extends A
+{
+ use T;
+}
+
+new B();
+
+--EXPECT--
+Trait contructor
+