2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1644-13.cs
blob3b9390e35367636465595d902015b47ef86ff731
1 // CS1644: Feature `named argument' cannot be used because it is not part of the C# 3.0 language specification
2 // Line: 13
3 // Compiler options: -langversion:3
5 public class C
7 static void Foo (int i)
11 public static void Main ()
13 Foo (i : 3);