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

16 lines
186 B
Plaintext
Raw Normal View History

2010-05-04 19:06:13 +00:00
--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