2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1670.cs
blob78f1d0e2af75e4f3c4e6e80cf9068fe99c7ab1a1
1 // CS1670: The `params' modifier is not allowed in current context
2 // Line: 10
4 delegate object D (params object[] args);
6 class C
8 public void Test ()
10 D d = delegate (params object[] args) {
11 return this;