php-src/Zend/tests/traits/error_003.phpt
2010-05-04 19:06:13 +00:00

16 lines
186 B
PHP

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