[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1745-2.cs
1 // CS1745: Cannot specify `System.Runtime.InteropServices.DefaultParameterValue' attribute on optional parameter `u'
2 // Line: 8
3
4 using System.Runtime.InteropServices;
5
6 public class C
7 {
8         public static void Test ([DefaultParameterValue (1)] int u = 2)
9         {
10         }
11 }