* ExternTable.cs (ExternTable.GetModuleTypeRef): 'module_table' can be
[mcs.git] / errors / gcs0411-4.cs
blobd44de02b51e53bbd05a5fd5520da4e19768ed8f9
1 // gcs0411.cs: The type arguments for method `T X.G<T>()' cannot be infered from the usage. Try specifying the type arguments explicitly
2 // Line: 17
4 using System;
6 delegate int E ();
8 class X
10 public static T G<T> ()
12 throw new ArgumentException ();
15 static void Main ()
17 E e2 = new E (G);