1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00
Files
archived-php-src/Zend/tests/ns_001.phpt
T
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

36 lines
432 B
PHP

--TEST--
001: Class in namespace
--FILE--
<?php
namespace test\ns1;
class Foo {
function __construct() {
echo __CLASS__,"\n";
}
function bar() {
echo __CLASS__,"\n";
}
static function baz() {
echo __CLASS__,"\n";
}
}
$x = new Foo;
$x->bar();
Foo::baz();
$y = new \test\ns1\Foo;
$y->bar();
\test\ns1\Foo::baz();
?>
--EXPECT--
test\ns1\Foo
test\ns1\Foo
test\ns1\Foo
test\ns1\Foo
test\ns1\Foo
test\ns1\Foo