summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0674.cs
blob: 84637ad281926ff292a83b1e41796478521bb96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0674: Do not use `System.ParamArrayAttribute'. Use the `params' keyword instead
// Line: 8

using System;

public class X
{
        public void Error ([ParamArray] int args)
        {
        }
       
}