Area-CompilersArea-IDEBugFeature - Pattern MatchingLanguage-C#help wanted
Repository metrics
- Stars
- (20,414 stars)
- PR merge metrics
- (Avg merge 6d 17h) (256 merged PRs in 30d)
Description
public class Point
{
public int X;
public int Y;
public void Deconstruct(out int XX, out int YY) => throw null;
void M()
{
object o = null;
if (o is Point($)) // <-- i should get sighelp here to make it clear what is being matched
{
}
}
}