import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-serialize / bug42919.php
blob949ccfc5553a6fec5f1d82ab3a4e5757a1f08cf7
1 <?php
2 namespace Foo;
3 class Bar {
5 echo serialize(new Bar) . "\n";
6 $x = unserialize(serialize(new Bar));
7 echo get_class($x) . "\n";
8 ?>