1
0
mirror of https://github.com/php/php-src.git synced 2026-04-16 20:41:18 +02:00
Files
archived-php-src/Zend/tests/nowdoc_017.phpt
Felipe Pena 3d7013045b - New tests
2008-05-11 03:15:13 +00:00

17 lines
156 B
PHP

--TEST--
Testing nowdoc in default value for property
--FILE--
<?php
class foo {
public $bar = <<<'EOT'
bar
EOT;
}
print "ok!\n";
?>
--EXPECT--
ok!