[xbuild] Vbc task - make error column check a little non-specific.
[mono.git] / mcs / tests / gtest-anon-16.cs
1 // Bug #79972
2 delegate void TestFunc<T>(T val);
3
4 class A
5 {
6         public A(TestFunc<int> func) { }
7
8         static void Main ()
9         { }
10 }
11
12 class TestClass
13 {
14         readonly A a = new A(delegate(int a) { });
15         static void Func<T>(TestFunc<T> func) { }
16 }