Fix LocalClientSecuritySettingsElement.Property, and other couple of API fixes.
[mono.git] / mcs / errors / gcs0411-4.cs
1 // CS0411: The type arguments for method `X.G<T>()' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 17
3
4 using System;
5
6 delegate int E ();
7
8 class X
9 {
10         public static T G<T> ()
11         {
12                 throw new ArgumentException ();
13         }
14
15         static void Main ()
16         {
17                 E e2 = new E (G);
18         }
19 }