add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / late_static_binding / 1884.php
blob3f409bcf36ab4b8428d81ec22b48ebe121e77054
1 <?php
3 class S {
4 public static function t() {
5 echo func_get_arg(0);
8 class C {
9 public static function d() {
10 echo get_called_class();
11 S::t(get_called_class());
12 echo get_called_class();
15 C::d();