xref: /PHP-5.5/Zend/tests/traits/bug61052.phpt (revision 520d07d8)
1--TEST--
2Bug #61052 (missing error check in trait 'insteadof' clause)
3--FILE--
4<?php
5trait T1 {
6  function foo(){ echo "T1\n"; }
7}
8trait T2 {
9  function foo(){ echo "T2\n"; }
10}
11class C {
12  use T1, T2 {
13    T1::foo insteadof T1;
14  }
15}
16C::foo();
17--EXPECTF--
18Fatal error: Inconsistent insteadof definition. The method foo is to be used from T1, but T1 is also on the exclude list in %s on line %d
19