New test.
[mono.git] / mcs / errors / cs1670.cs
1 // cs1670.cs: The `params' modifier is not allowed in anonymous method declaration
2 // Line: 10
3
4 delegate object D (params object[] args);
5
6 class C
7 {
8    public void Test ()
9    {
10       D d = delegate (params object[] args) {
11                 return this;
12           };
13    }
14 }