1
0
mirror of https://github.com/php/php-src.git synced 2026-04-02 21:52:36 +02:00
Files
archived-php-src/Zend/tests/constexpr/new_static.phpt
Nikita Popov 52d3d0d8d7 Add limited support for new in initializers
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.
2021-07-13 14:03:20 +02:00

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