--TEST--
Bug #62358 (Segfault when using traits a lot)
--SKIPIF--
<?php
if (getenv("USE_ZEND_ALLOC") !== "0") {
    die(
"skip Need Zend MM enabled");
}
?>
--FILE--
<?php 

trait {
    public function 
foo() {
        echo 
"from T";
    }
}

interface 
{
    public function 
foo();
}

abstract class 
implements I{
    use 
T;
}

class 
extends {
   public function 
foo($var) {
   } 
}
?>
--EXPECTF--
Strict Standards: Declaration of B::foo() should be compatible with A::foo() in %sbug62358.php on line %d