JeremyMorton opened this issue 2 years ago · 0 comments
public ValueTask<IDisposable> M1Async() { var disposable = new Disposable(); return new(disposable); } public ValueTask<IDisposable> M2Async() { return new(new Disposable()); }