mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
14 lines
168 B
PHP
14 lines
168 B
PHP
--TEST--
|
|
063: Support for old-style constructors in namesapces
|
|
--FILE--
|
|
<?php
|
|
namespace Foo;
|
|
class Bar {
|
|
function Bar() {
|
|
echo "ok\n";
|
|
}
|
|
}
|
|
new Bar();
|
|
--EXPECT--
|
|
ok
|