php-src/Zend/tests/ns_053.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

13 lines
210 B
PHP

--TEST--
053: Run-time constant definition
--FILE--
<?php
namespace test::ns1;
define(__NAMESPACE__ . '::NAME', basename(__FILE__));
echo NAME."\n";
echo test::ns1::NAME."\n";
--EXPECT--
ns_053.php
ns_053.php