mirror of
https://github.com/php/php-src.git
synced 2025-01-20 10:43:40 +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) {
|
|
}
|