add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / call_static / 1900.php
blobcf6870a48f3309af9b86b7a0b0466907850c960b
1 <?php
3 class MethodTest {
4 public function __call($name, $arguments) {
5 var_dump($name, implode(', ', $arguments));
7 public static function __callStatic($name, $arguments) {
8 var_dump($name, implode(', ', $arguments));
11 $obj = new MethodTest;
12 $obj->runTest('in object context');
13 MethodTest::runTest('in static context');