mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
23 lines
254 B
PHP
23 lines
254 B
PHP
--TEST--
|
|
Testing declaration of alias to 'static'
|
|
--FILE--
|
|
<?php
|
|
|
|
class bar {
|
|
}
|
|
|
|
class foo {
|
|
public function test() {
|
|
class_alias('bar', 'static');
|
|
return new static;
|
|
}
|
|
}
|
|
|
|
$a = new foo;
|
|
var_dump($a->test());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
object(foo)#%d (0) {
|
|
}
|