[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1743.cs
1 // CS1743: Cannot specify a default value for the `this' parameter
2 // Line: 6
3
4 static class C
5 {
6         public static void Test (this C a = null)
7         {
8         }
9 }