Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1909-2.cs
1 // CS1909: The DefaultParameterValue attribute is not applicable on parameters of type `System.Type'
2 // Line: 7
3
4 using System.Runtime.InteropServices;
5
6 interface ITest {
7         void f ([DefaultParameterValue (typeof (ITest))] System.Type x);
8 }