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

16 lines
188 B
PHP

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