[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / test-anon-114.cs
blobfcc7b0bc158e8df13d8cbe03689479809d50c982
1 using System;
3 class T{
4 void SomeMethod (Converter <Int32, Int32> converter) {}
5 void SomeCaller () {
6 SomeMethod (delegate (Int32 a) { return a; });
9 public static void Main ()
10 { }