Merge pull request #5567 from kumpera/fix_59334
[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 }