1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 00:18:23 +02:00
Files
archived-php-src/Zend/tests/ns_041.phpt
T
2017-03-23 18:52:43 +01:00

23 lines
343 B
PHP

--TEST--
041: Constants in namespace
--FILE--
<?php
namespace test\ns1;
const FOO = "ok\n";
echo(FOO);
echo(\test\ns1\FOO);
echo(\test\ns1\FOO);
echo(BAR);
const BAR = "ok\n";
--EXPECTF--
ok
ok
ok
Warning: Use of undefined constant BAR - assumed 'BAR' (this will throw an Error in a future version of PHP) in %sns_041.php on line 9
BAR