[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0225.cs
blob883fbd5a2d12a3aaa1bbe78f48bd5bae4f53eb17
1 // CS0225: The params parameter must be a single dimensional array
2 // Line: 6
4 public class X
6 public static void Test (params int a)
10 public static void Main()
12 Test (1);