--TEST-- Lazy objects: get_properties failure --FILE-- newLazyProxy(function () { throw new \Exception('Initializer'); }); $b = new C(); try { var_dump($a > $b); } catch (Exception $e) { printf("%s: %s\n", $e::class, $e->getMessage()); } ?> --EXPECT-- Exception: Initializer