mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
13 lines
204 B
PHP
13 lines
204 B
PHP
--TEST--
|
|
Heredoc with double quotes and wrong prefix
|
|
--FILE--
|
|
<?php
|
|
$test = "foo";
|
|
$var = prefix<<<"MYLABEL"
|
|
test: $test
|
|
MYLABEL;
|
|
echo $var;
|
|
?>
|
|
--EXPECTF--
|
|
Parse error: %s in %sheredoc_013.php on line %d
|