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

13 lines
168 B
PHP

--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