mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
9 lines
126 B
PHP
Executable file
9 lines
126 B
PHP
Executable file
<?php
|
|
namespace X::Y;
|
|
function foo() {
|
|
echo __FUNCTION__."\n";
|
|
}
|
|
namespace X::Z;
|
|
function foo() {
|
|
echo __FUNCTION__."\n";
|
|
}
|