mirror of
https://github.com/php/php-src.git
synced 2026-04-18 05:21:02 +02:00
14 lines
206 B
PHP
14 lines
206 B
PHP
--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
|