Skip to content

Commit

Permalink
Duplicate an issue
Browse files Browse the repository at this point in the history
This dupes dotnet#29898 to dotnet#29605 and cleans up the related comment

closes dotnet#29898
  • Loading branch information
jaredpar committed Apr 12, 2019
1 parent 56a229e commit 90b1e3d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34551,6 +34551,7 @@ static void G(A<string> a2, B b2)
Diagnostic(ErrorCode.WRN_NullabilityMismatchInAssignment, "b2").WithArguments("B", "IOut<object>").WithLocation(19, 13));
}

[WorkItem(29898, "https://github.com/dotnet/roslyn/issues/29898")]
[Fact]
public void ImplicitConversions_07()
{
Expand All @@ -34576,7 +34577,7 @@ static void Main(object? x)
}
}";
var comp = CreateCompilation(new[] { source }, options: WithNonNullTypesTrue());
// https://github.com/dotnet/roslyn/issues/29898: Report warning for `G(z)`?
// https://github.com/dotnet/roslyn/issues/29605: Report warning for `G(z)`?
comp.VerifyDiagnostics();
}

Expand Down

0 comments on commit 90b1e3d

Please sign in to comment.