503f75d08b
These names don't make sense now that we run both suites the same way.
13 linhas
106 B
PHP
13 linhas
106 B
PHP
<?php
|
|
|
|
class Foo {
|
|
public static $x;
|
|
}
|
|
|
|
function f() {
|
|
$x = 2;
|
|
Foo::$x = &$x;
|
|
}
|
|
f();
|
|
echo "done\n";
|