summaryrefslogtreecommitdiff
path: root/mcs/tests/test-anon-114.cs
blob: fcc7b0bc158e8df13d8cbe03689479809d50c982 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

class T{
        void SomeMethod (Converter <Int32, Int32> converter) {}
        void SomeCaller () {
                SomeMethod (delegate (Int32 a) { return a; });
        }

	public static void Main ()
	{ }
}