"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0305-7.cs
blob5efc0235dced0c047768e85ff857ff77ebc4d0c0
1 // CS0305: Using the generic method `X.G<T>()' requires `1' type argument(s)
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);