 ```C# using System; class C2 : IDisposable { void M() { using var x2 = new C2(); x2.ToString(); x2.ToString(); } public void Dispose() => throw new NotImplementedException(); } ``` FYI @chsienki