TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
434 B
27 lines
434 B
--TEST--
|
|
compact() without object context
|
|
--SKIPIF--
|
|
<?php die("skip AOT compiler rejects compact('this') outside class method"); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(
|
|
(new class {
|
|
function test(){
|
|
return (static function(){ return compact('this'); })();
|
|
}
|
|
})->test()
|
|
);
|
|
|
|
var_dump(compact('this'));
|
|
|
|
var_dump((function(){ return compact('this'); })());
|
|
|
|
?>
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|
|
array(0) {
|
|
}
|
|
array(0) {
|
|
}
|
|
|