Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-anon-114.cs
1 using System;
2
3 class T{
4         void SomeMethod (Converter <Int32, Int32> converter) {}
5         void SomeCaller () {
6                 SomeMethod (delegate (Int32 a) { return a; });
7         }
8
9         public static void Main ()
10         { }
11 }