blob: ce4fa5c69acf0ee92e9d842673594597191ce375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--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
|