add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / apc / 1815.php
blobe3e85930400665d9136e349707f2e567a39ee27f
1 <?php
3 class A {
4 private $b = 10;
6 class B extends A {
7 private $b = 100;
9 apc_store('key', new B());
10 var_dump(apc_fetch('key'));