From 443784e348618a711c0f26810123c481c62a693d Mon Sep 17 00:00:00 2001 From: Julien Couvreur Date: Fri, 2 Nov 2018 17:34:41 -0700 Subject: [PATCH] Do not warn for double nullable supression (#30936) --- .../Test/Semantic/Semantics/NullableReferenceTypesTests.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Compilers/CSharp/Test/Semantic/Semantics/NullableReferenceTypesTests.cs b/src/Compilers/CSharp/Test/Semantic/Semantics/NullableReferenceTypesTests.cs index 8668fe3a41bf8..d5d2381a23d92 100644 --- a/src/Compilers/CSharp/Test/Semantic/Semantics/NullableReferenceTypesTests.cs +++ b/src/Compilers/CSharp/Test/Semantic/Semantics/NullableReferenceTypesTests.cs @@ -31925,7 +31925,6 @@ internal void F() { } ); } - // https://github.com/dotnet/roslyn/issues/29902: Binder should report an error for `!!`. [Fact] [WorkItem(29902, "https://github.com/dotnet/roslyn/issues/29902")] public void SuppressNullableWarning_Multiple() @@ -31946,7 +31945,7 @@ static void G(string s) var comp = CreateCompilation( new[] { source }, options: WithNonNullTypesTrue(), parseOptions: TestOptions.Regular8); - comp.VerifyDiagnostics(/* ... */); + comp.VerifyDiagnostics(); } [Fact]