test code: ```python class X: def __del__(self): print('deleted!') x = X() ``` CPython output: ``` deleted! ``` RustPython output: ``` ```