summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_042.phpt
blob: eecd5f92561f65ac210288afba1916ff3056fa3c (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