summaryrefslogtreecommitdiff
path: root/Zend/tests/grammar/regression_011.phpt
blob: c79c077187d3b02c18b7b687f64be9e0545a2318 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Testing instantiation using namespace:: prefix
--FILE--
<?php

namespace foo;

class bar {
}

class_alias('foo\bar', 'foo\baz');

var_dump(new namespace\baz);

?>
--EXPECTF--
object(foo\bar)#%d (0) {
}