blob: 0379dd26e3cbc0a7771aa090a1c1a04f300ccb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Testing for regression with encapsed variables in class declaration context
--FILE--
<?php
class A { function foo() { "{${$a}}"; } function list() {} }
echo "Done", PHP_EOL;
?>
--EXPECT--
Done
|