blob: 14444bdae2f8fc156cff3aaea6365b9933edd79c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
class name as scalar from ::class keyword error using static non class context
--FILE--
<?php
$x = static::class;
?>
--EXPECTF--
Fatal error: Uncaught Error: Cannot use "static" in the global scope in %s:%d
Stack trace:
#0 {main}
thrown in %s on line 3
|