diff --git a/src/Compilers/CSharp/Test/Semantic/Semantics/DeconstructionTests.cs b/src/Compilers/CSharp/Test/Semantic/Semantics/DeconstructionTests.cs index 951fab72dd0ee97c0c65b9c031bf6f959fb5cabf..d0f51023d0b644fdba1c52dc02cbca4cafc69083 100644 --- a/src/Compilers/CSharp/Test/Semantic/Semantics/DeconstructionTests.cs +++ b/src/Compilers/CSharp/Test/Semantic/Semantics/DeconstructionTests.cs @@ -1321,7 +1321,7 @@ static void Main() int x, y; /**/(x, y) = new C()/**/; - System.Console.WriteLine(x + """" """" + y); + System.Console.WriteLine(x + "" "" + y); } } "; @@ -1339,9 +1339,6 @@ static void Main() null "; var expectedDiagnostics = new DiagnosticDescription[] { - // CS1003: Syntax error, ',' expected - // System.Console.WriteLine(x + "" "" + y); - Diagnostic(ErrorCode.ERR_SyntaxError, @"""""").WithArguments(",", "").WithLocation(14, 41), // CS0121: The call is ambiguous between the following methods or properties: 'Base.Deconstruct(out int, out int)' and 'Base.Deconstruct(out long, out long)' // /**/(x, y) = new C()/**/; Diagnostic(ErrorCode.ERR_AmbigCall, "new C()").WithArguments("Base.Deconstruct(out int, out int)", "Base.Deconstruct(out long, out long)").WithLocation(12, 28),