linux-packaging-mono/mcs/tests/test-anon-130.cs

32 lines
348 B
C#
Raw Normal View History

using System;
public delegate void Simple ();
public delegate Simple Foo ();
class X
{
public void Hello<U> (U u)
{
}
public void Test<T> (T t)
{
{
T u = t;
Hello (u);
Foo foo = delegate {
T v = u;
Hello (u);
return delegate {
Hello (u);
Hello (v);
};
};
}
}
public static void Main ()
{
}
}