summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1670.cs
blob: 78f1d0e2af75e4f3c4e6e80cf9068fe99c7ab1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1670: The `params' modifier is not allowed in current context
// Line: 10

delegate object D (params object[] args);

class C
{
   public void Test ()
   {
      D d = delegate (params object[] args) {
		return this;
	  };
   }
}