mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
13 lines
193 B
PHP
13 lines
193 B
PHP
--TEST--
|
|
Accessing a static property on a statically evaluable class expression
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
public static $b = 42;
|
|
}
|
|
var_dump(('A' . (string) '')::$b);
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(42)
|