* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0674.cs
1 // cs0674.cs: Do not use `System.ParamArrayAttribute'. Use the `params' keyword instead
2 // Line: 8
3
4 using System;
5
6 public class X
7 {
8         public void Error ([ParamArray] int args)
9         {
10         }
11        
12 }