mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
d30cd7d7e7
Closes GH-5590
11 lines
210 B
PHP
11 lines
210 B
PHP
--TEST--
|
|
An error should be generated when using ::class on a constant evaluated expression
|
|
--FILE--
|
|
<?php
|
|
|
|
(1+1)::class;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use "::class" on value of type int in %s on line %d
|