php-8.0.30-src/Zend/tests/traits/error_003.phpt

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