Copied remotely
[mono.git] / mcs / errors / gcs0411-4.cs
1 using System;
2
3 delegate int E ();
4
5 class X
6 {
7         public static T G<T> ()
8         {
9                 throw new ArgumentException ();
10         }
11
12         static void Main ()
13         {
14                 E e2 = new E (G);
15         }
16 }