Currently `GetSymbolInfo()` returns `null` for method groups with inferred delegate type, such as for the expression `Main` below. ```csharp class Program { static void Main() { System.Delegate d = Main; } } ``` Relates to "lambda improvements" feature ([test plan](https://github.com/dotnet/roslyn/issues/52192))