php-src/Zend/tests/traits/error_003.phpt
2020-02-03 22:52:20 +01:00

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