Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1910.cs
1 // CS1910: Argument of type `System.Type' is not applicable for the DefaultParameterValue attribute
2 // Line: 7
3
4 using System.Runtime.InteropServices;
5
6 class Test {
7         void f ([DefaultParameterValue (typeof (object))] object x)
8         {
9         }
10 }