php-src/Zend/tests/traits/bugs/missing-trait.phpt

15 lines
221 B
Plaintext
Raw Normal View History

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