add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / call_static / 1890.php
blob433eab75576b6e589518466ed213069aab56957b
1 <?php
3 class b2 {
5 class c2 extends b2 {
6 public static function __callStatic($func, $args) {
7 echo "c2::__callStatic
8 ";
11 class d2 extends c2 {
12 public function __call($func, $args) {
13 echo "d2::__call
16 public function test1a() {
17 b2::foo();
20 set_error_handler('h');
21 function h() {
22 var_dump('errored');
24 $obj = new d2;
25 $obj->test1a();
26 var_dump('end');