mirror of
https://github.com/php/php-src.git
synced 2024-12-20 23:39:46 +08:00
15 lines
234 B
Plaintext
15 lines
234 B
Plaintext
|
--TEST--
|
||
|
Cannot use $this as lexical variable
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class Foo {
|
||
|
public function fn() {
|
||
|
return function() use ($this) {};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Cannot use $this as lexical variable in %s on line %d
|