mirror of
https://github.com/php/php-src.git
synced 2026-04-02 21:52:36 +02:00
Add support for new expressions inside parameter default values, static variable initializers, global constant initializers and attribute arguments. RFC: https://wiki.php.net/rfc/new_in_initializers Closes GH-7153.
11 lines
176 B
PHP
11 lines
176 B
PHP
--TEST--
|
|
Static in new is not supported
|
|
--FILE--
|
|
<?php
|
|
|
|
static $x = new static;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: "static" is not allowed in compile-time constants in %s on line %d
|