Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / test-anon-116.cs
blobdadb22a676ee8b7827d2c69ab8703ea00ef5cbe4
1 // Bug #79972
2 delegate void TestFunc<T>(T val);
4 class A
6 public A(TestFunc<int> func) { }
8 static void Main ()
9 { }
12 class TestClass
14 readonly A a = new A(delegate(int a) { });
15 static void Func<T>(TestFunc<T> func) { }