"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1744.cs
bloba3b3a32e6e360270488e19bbb4ab78ac2e34fab5
1 // CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2 // Line: 12
4 static class C
6 public static void Test (int a, int b)
10 public static void Main ()
12 Test (1, a : 2);