dotnet/roslyn
View on GitHubCannot "Go To Definition" of a type keyword if you are within that type in decompilation
Open
#25,301 opened on Mar 7, 2018
Area-IDEBughelp wanted
Description
(Turn on decompilation)
- Create Console App (.NET Framework)
- In the following, CTRL+Click
int
class Program
{
static void Main(string[] args)
{
int foo;
}
}
- When prompted say Yes to decompile
- Scroll down to
bool TryParse(string s, out int result) - try and CTRL+Click
int
Expected: To go to the top of the class to the definition Actual: It's not clickable