Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-anon-128.cs
1 abstract class A {
2         public abstract void Foo<T>() where T : struct;
3 }
4
5 class B : A {
6         public delegate void Del();
7
8         public override void Foo<T>() 
9         {
10                 Del d=delegate(){Foo<T>();};
11         }
12
13         public static void Main(){}
14 }
15