2010-05-27 Marek Safar <marek.safar@gmail.com>
[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         static void Main ()
14         { }
15 }