blob: 35b61b1da754f54998bdf265b9c93cded2bb3b3b (
plain)
1
2
3
4
5
6
7
8
|
// CS1908: The type of the default value should match the type of the parameter
// Line:
class Test {
internal void f ([System.Runtime.InteropServices.DefaultParameterValue (null)] short x)
{
}
}
|