ru_php/Zend/tests/traits/bugs/missing-trait.phpt

19 lines
278 B
PHP

--TEST--
Check error message for missing traits
--FILE--
<?php
error_reporting(E_ALL);
class TraitsTest {
use THello;
}
$test = new TraitsTest();
?>
--EXPECTF--
Fatal error: Uncaught Error: Trait "THello" not found in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d