You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Test]publicvoidLeaveOpenLocals(){vartestCode=@"namespace RoslynSandbox{ using System.IO; using System.Text; public class C { public C(string fileName) { using (var stream = File.OpenRead(fileName)) { using (var reader = new StreamReader(stream, new UTF8Encoding(), true, 1024, leaveOpen: false)) { _ = reader.ReadLine(); } _ = ↓stream.ReadByte(); } } }}";AnalyzerAssert.Diagnostics(Analyzer,ExpectedDiagnostic,testCode);}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: