Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-292.cs
1 namespace Test
2 {
3         public delegate void Handler<TA> (TA sender)
4                 where TA: A<TA>;
5
6         public class A<TA>
7                 where TA: A<TA>
8         { }
9 }
10
11 class X
12 {
13         public static void Main ()
14         { }
15 }