--TEST--
Nowdocs CAN be used as static scalars.
--FILE--
<?php

require_once 'nowdoc.inc';

class 
{
    
    const 
= <<<'THISMUSTNOTERROR'
If you DON'T see this, something's wrong.
THISMUSTNOTERROR;

};

print 
e::"\n";

?>
--EXPECTF--
If you DON'T see this, something's wrong.