blob: 2b13962902a4aba962073dbcae34a6627f12a47b (
plain)
1
2
3
4
5
6
7
8
|
// CS1909: The DefaultParameterValue attribute is not applicable on parameters of type `System.Type'
// Line: 7
using System.Runtime.InteropServices;
interface ITest {
void f ([DefaultParameterValue (typeof (ITest))] System.Type x);
}
|