a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
31 lines
330 B
C#
31 lines
330 B
C#
using System;
|
|
using System.Linq.Expressions;
|
|
|
|
class A<TA>
|
|
{
|
|
public class B<TB>
|
|
{
|
|
public static void foo ()
|
|
{
|
|
Expression<Action> func = () => foo ();
|
|
}
|
|
|
|
class C<TC>
|
|
{
|
|
static void bar ()
|
|
{
|
|
B<TC>.foo ();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class Program
|
|
{
|
|
public static int Main ()
|
|
{
|
|
A<int>.B<ulong>.foo ();
|
|
return 0;
|
|
}
|
|
}
|