cleol
[mcs.git] / errors / gcs1501-4.cs
blobf64a51f6bc37dc1e80fbaadac11915eff2f1d53d
1 // CS1501: No overload for method `Test' takes `2' arguments
2 // Line: 16
3 // Compiler options: -langversion:future
5 static class S
7 public static int Test (this int value)
9 return value;
13 class M
15 public static void Main ()
17 1.Test (value: 1);