blob: 9f5b3e16f1e56091f0501489b6cf19d9749ee5a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--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
|