KirillOsenkov / RoslynQuoter

Roslyn tool that for a given C# program shows syntax tree API calls to construct its syntax tree
http://roslynquoter.azurewebsites.net
Apache License 2.0
922 stars 118 forks source link

System.OutOfMemoryException with delegates #26

Closed flamz3d closed 7 years ago

flamz3d commented 7 years ago
class C 
{
delegate void foo();
void method()
{
}
void doit()
{
some(method);
}
void some(foo a)
{
}
}