mirror of
https://github.com/php/php-src.git
synced 2025-01-26 21:54:16 +08:00
13 lines
193 B
Plaintext
13 lines
193 B
Plaintext
|
--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
|