summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/bugs/missing-trait.phpt
blob: 1cdd4f1cc649650eae8998a77a810e8e65f01641 (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