add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / call_static / 1901.php
blob6b9d04ece069d9d17c9157c95200bfb6960dbf6d
1 <?php
3 abstract class BaseClass {
4 public static function __callStatic($name, $arguments) {
5 echo "Calling static method '$name' " . implode(', ', $arguments). "\n";
8 BaseClass::foo();