summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_027.inc
blob: 014bc4055287ac1813e781d7174ad80319fa781f (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
namespace Foo::Bar;

class Foo {
  function __construct() {
  	echo __CLASS__,"\n";
  }
  static function Bar() {
  	echo __CLASS__,"\n";
  }
}