[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs1738.cs
blobdab9a61160b9ecfd2c2d1ce3ce6a45f82b8c16d8
1 // CS1738: Named arguments must appear after the positional arguments
2 // Line: 12
4 class C
6 static void Foo (int a, string s)
10 public static void Main ()
12 Foo (a : 1, "out");