1--TEST--
2__PROPERTY__ magic constant in nested function
3--FILE--
4<?php
5
6class Test {
7    public $prop {
8        get => (function () {
9            return __PROPERTY__;
10        })();
11    }
12}
13
14$test = new Test;
15var_dump($test->prop);
16
17?>
18--EXPECT--
19string(0) ""
20