php-src/Zend/tests/ns_029.phpt

13 lines
225 B
Plaintext
Raw Normal View History

2007-09-28 19:52:53 +00:00
--TEST--
029: Name ambiguity (class name & import name)
--FILE--
<?php
use A\B as Foo;
2007-09-28 19:52:53 +00:00
class Foo {
}
new Foo();
--EXPECTF--
2007-11-12 17:52:15 +00:00
Fatal error: Cannot declare class Foo because the name is already in use in %sns_029.php on line 4