[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-anon-98.cs
blob7c9d32b3c775d43c128ffb70d4c27c0b41def3c1
1 using System;
3 class Foo
5 ~Foo()
7 int x = 1;
8 Action a = () => Console.WriteLine("{0}", x);
11 public static void Main ()
13 new Foo ();