summaryrefslogtreecommitdiff
path: root/Zend/tests/bug43183.phpt
blob: 88641e862ac21b32f786560b58aa68c7fdc8e9b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Bug #43183 ("use" of the same class in difference scripts results in a fatal error)
--FILE--
<?php
namespace Test;
use Test\Foo;
class Foo {}
class Bar {}
use Test\Bar;
echo "ok\n";
--EXPECT--
ok