blob: 6b467446c2d4ee0680fff444a1f45500374d5df5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS1910: Argument of type `int[]' is not applicable for the DefaultParameterValue attribute
// Line: 7
using System.Runtime.InteropServices;
using System;
class Test {
void f ([DefaultParameterValue (new int[0])] object x)
{
}
}
|