[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1644-13.cs
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
4
5 public class C
6 {
7         static void Foo (int i)
8         {
9         }
10         
11         public static void Main ()
12         {
13                 Foo (i : 3);
14         }
15 }