--TEST--
In instead definitions all trait whose methods are meant to be hidden can be listed.
--FILE--
<?php
error_reporting
(E_ALL);

trait 
{
   public function 
foo() {
     echo 
'a';
   }
}

trait 
{
   public function 
foo() {
     echo 
'b';
   }
}

trait 
{
   public function 
foo() {
     echo 
'c';
   }
}

class 
MyClass {
    use 
CA{
        
B::foo insteadof AC
    }
}

$t = new MyClass;
$t->foo();

?>
--EXPECTF--    
b