mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
21 lines
280 B
PHP
21 lines
280 B
PHP
--TEST--
|
|
Nowdocs CAN be used as static scalars.
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once 'nowdoc.inc';
|
|
|
|
class e {
|
|
|
|
const E = <<<'THISMUSTNOTERROR'
|
|
If you DON'T see this, something's wrong.
|
|
THISMUSTNOTERROR;
|
|
|
|
};
|
|
|
|
print e::E . "\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
If you DON'T see this, something's wrong.
|