xref: /php-src/Zend/tests/ns_014.phpt (revision 7aacc705)
1--TEST--
2014: Name conflict and functions (php name)
3--FILE--
4<?php
5namespace test\ns1;
6
7echo strlen("Hello"),"\n";
8?>
9--EXPECT--
105
11