Updating submodules
[hiphop-php.git] / hphp / test / slow / prefixed_string / prefixed_string.php
blobbc894fb6afa495260dabb4b5574fa4ee38605981
1 <?hh
3 function f(): void {
4 $x = re"blah blah\n";
5 echo($x);
6 $s1 = "Be";
7 $s2 = "diff";
8 $s = re"{$s1} the {$s2} you want to see.\n";
9 echo($s);
13 <<__EntryPoint>>
14 function main_prefixed_string() :mixed{
15 f();