blob: a1eb6b413481b7357c3803dce8c6f3ceec6cf9ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Trying to extend a trait
--FILE--
<?php
trait abc { }
class foo extends abc { }
?>
--EXPECTF--
Fatal error: Class foo cannot extend from trait abc in %s on line %d
|