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

13 lines
165 B
Plaintext
Raw Normal View History

--TEST--
Trying to create a constant on Trait
--FILE--
<?php
trait foo {
const a = 1;
}
?>
--EXPECTF--
Fatal error: Traits cannot have constants in %s on line %d