mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
11 lines
196 B
PHP
11 lines
196 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 int in %s on line %d
|