xref: /PHP-5.5/Zend/tests/heredoc_013.phpt (revision 5f68027d)
1--TEST--
2Heredoc with double quotes and wrong prefix
3--FILE--
4<?php
5$test = "foo";
6$var = prefix<<<"MYLABEL"
7test: $test
8MYLABEL;
9echo $var;
10?>
11--EXPECTF--
12Parse error: %s in %sheredoc_013.php on line %d
13