linux-packaging-mono/mcs/tests/test-anon-114.cs

12 lines
226 B
C#
Raw Normal View History

using System;
class T{
void SomeMethod (Converter <Int32, Int32> converter) {}
void SomeCaller () {
SomeMethod (delegate (Int32 a) { return a; });
}
public static void Main ()
{ }
}