Files
linux-packaging-mono/mcs/errors/cs1669-4.cs

15 lines
195 B
C#
Raw Normal View History

// CS1669: __arglist is not valid in this context
// Line: 10
delegate object D (object o);
class C
{
public void Test ()
{
D d = delegate (__arglist) {
return this;
};
}
}