cleol
[mcs.git] / errors / gcs0307.cs
blobd73dec8c6b383e91e2c426b9afd53948c6e6c4fa
1 // CS0307: The property `B.Get' cannot be used with type arguments
2 // Line: 14
3 public class B
5 public virtual int Get {
6 get { return 3; }
10 public class A : B
12 public override int Get {
13 get {
14 return base.Get<int>;
18 public static void Main ()