1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 14:31:06 +02:00
Files
archived-php-src/Zend/tests/traits/error_004.phpt
2018-10-14 19:45:12 +02:00

16 lines
176 B
PHP

--TEST--
Trying to use a class as trait
--FILE--
<?php
class abc {
}
class A {
use abc;
}
?>
--EXPECTF--
Fatal error: A cannot use abc - it is not a trait in %s on line %d