php-8.0.30-src/Zend/tests/varSyntax/static_prop_on_expr_class.phpt

14 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)