summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_038.phpt
blob: 9cef33d82b31e65486b5eef46882cd88f2dc3870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
038: Name ambiguity (namespace name or internal class name)
--FILE--
<?php
namespace Exception;
function foo() {
  echo "ok\n";
}
\Exception\foo();
\Exception::bar();
--EXPECTF--
ok

Fatal error: Uncaught Error: Call to undefined method Exception::bar() in %sns_038.php:7
Stack trace:
#0 {main}
  thrown in %sns_038.php on line 7