add bug info
[mcs.git] / tests / test-anon-30.cs
blob7cb601d7599c3f28ed078e9c7ae6f89b2d3db0b7
1 class X {
2 public bool eh;
5 static class Program {
6 delegate void D (X o);
7 static event D E;
9 static void Main()
11 bool running = true;
13 E = delegate(X o) {
14 o.eh = false;
15 running = false;
18 running = true;