2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-anon-87.cs
blob517d78de75efe4f2dd6f0b8db8e20733751b4195
1 using System;
3 namespace Bug
5 public delegate void D ();
7 class AA : BB
9 public AA (BB bb)
10 : base (bb.Value)
12 D d = delegate () {
13 bb.Foo ();
14 TestMe ();
18 void TestMe ()
22 public static int Main ()
24 new AA (new BB ("a"));
25 return 0;
29 class BB
31 public string Value = "test";
33 public BB (string s)
37 public void Foo ()