mirror of
https://github.com/php/php-src.git
synced 2025-01-25 13:14:22 +08:00
13 lines
193 B
PHP
13 lines
193 B
PHP
--TEST--
|
|
Error case: class constant as an encapsed containing a variable
|
|
--FILE--
|
|
<?php
|
|
class myclass
|
|
{
|
|
const myConst = "$myVar";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Parse error: %s in %s on line %d
|