summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_042.phpt
blob: ba420a7c80f9835110c3875e990b48ee6c889630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
042: Import in namespace and constants
--FILE--
<?php
namespace test\ns1;

const FOO = "ok\n";

use test\ns1 as ns2;
use test as ns3;

echo FOO;
echo \test\ns1\FOO;
echo \test\ns1\FOO;
echo ns2\FOO;
echo ns3\ns1\FOO;
--EXPECT--
ok
ok
ok
ok
ok