summaryrefslogtreecommitdiff
path: root/Zend/tests/this_as_lexical_var_error.phpt
blob: 6b759339376d3ad6773ddfdbd4f3985fa515de2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Cannot use $this as lexical variable
--FILE--
<?php

class Foo {
    public function f() {
        return function() use ($this) {};
    }
}

?>
--EXPECTF--
Fatal error: Cannot use $this as lexical variable in %s on line %d