Version Used:
main
Steps to Reproduce:
[Fact, Trait(Traits.Feature, Traits.Features.F1Help)]
public async Task TestGenericAngle2()
{
await TestAsync(
@"class Program
{
static void generic<T>(T t)
{
generic<int[|>|](0);
}
}", "Program.generic``1");
}
Note: The above test will fail because actual is >_CSharpKeyword. This doesn't align with TestGenericAngle which expects:
"Program.generic``1"
IMO both results are not good. We should redirect to https://docs.microsoft.com/en-us/dotnet/csharp/fundamentals/types/generics. The page doesn't yet have an F1 keyword.
Version Used:
main
Steps to Reproduce:
Note: The above test will fail because actual is
>_CSharpKeyword. This doesn't align withTestGenericAnglewhich expects:IMO both results are not good. We should redirect to https://docs.microsoft.com/en-us/dotnet/csharp/fundamentals/types/generics. The page doesn't yet have an F1 keyword.