copying the latest Sys.Web.Services from trunk.
[mono.git] / mcs / errors / cs1670.cs
1 // cs01670.cs: params is not valid in this context
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 }