Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-708.cs
1 public class A
2 {
3         public delegate ADelegate ADelegate (bool ok);
4
5         public static ADelegate Delegate2 (bool ok)
6         {
7                 return ok ? Delegate2 : (ADelegate) null;
8         }
9
10         public static void Main ()
11         {
12         }
13 }