Skip to content

Commit

Permalink
Do not warn for double nullable supression (#30936)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcouv authored Nov 3, 2018
1 parent 8411c17 commit 443784e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -31946,7 +31945,7 @@ static void G(string s)
var comp = CreateCompilation(
new[] { source }, options: WithNonNullTypesTrue(),
parseOptions: TestOptions.Regular8);
comp.VerifyDiagnostics(/* ... */);
comp.VerifyDiagnostics();
}

[Fact]
Expand Down

0 comments on commit 443784e

Please sign in to comment.