1--TEST--
2Issue #23 (Empty objects get serialized with incorrect type)
3--SKIPIF--
4<?php
5if (!extension_loaded("msgpack")) {
6   echo "skip";
7}
8--FILE--
9<?php
10class test {}
11print_r(msgpack_unserialize (msgpack_serialize (new test())));
12?>
13--EXPECTF--
14test Object
15(
16)
17