1--TEST--
2OSS Fuzz #60734: use-after-free visible in ASAN build pre decrement.
3--FILE--
4<?php
5class Foo{
6}
7$test = new Foo;
8$y = --$test;
9?>
10--EXPECTF--
11Fatal error: Uncaught TypeError: Cannot decrement Foo in %s:%d
12Stack trace:
13#0 {main}
14  thrown in %s on line %d
15