[w32file] Remove dead code
[mono.git] / mcs / errors / cs1669-4.cs
1 // CS1669: __arglist is not valid in this context
2 // Line: 10
3
4 delegate object D (object o);
5
6 class C
7 {
8    public void Test ()
9    {
10       D d = delegate (__arglist) {
11                 return this;
12           };
13    }
14 }