1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00
Files
archived-php-src/Zend/tests/traits/error_005.phpt
Felipe Pena 6e8db0b35a - New tests
2010-05-04 19:06:13 +00:00

16 lines
189 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