More tests.
[mono.git] / mcs / tests / ltest-13.cs
index da36bc7ebe745a076809ca66ee1ce4c18789f7e4..817a698daef9e0ac8f30794f9f59a3241bc037e4 100644 (file)
@@ -1,5 +1,17 @@
 using System;
 
+class TestUnary
+{
+       static void Foo (Action<int> a)
+       {
+       }
+
+       static void Bar ()
+       {
+               Foo (str => ++str);
+       }
+}
+
 class Program
 {