Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
gotodeclaration
/
testClassInUseStatement209187
/
testClassInUseStatement209187.php
blob: d2f2ec3237ab29bc35abd712c0c4b1d7f52fd277 [
file
]
<?
php
namespace
Foo
\Bar
{
class
ClassName
{
}
}
namespace
{
use
\Foo\Bar\ClassName
;
class
MyCls
{
function
__construct
()
{
new
ClassName
();
}
}
}
?>