Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-anon-83.cs
1 using System;
2
3 public class C
4 {
5         public event EventHandler MyDelegate = delegate { };
6
7         internal void DoSomething (bool bValue)
8         {
9                 if (!bValue) {
10                         // It has to be here to check we are closing correctly top-block
11                         return;
12                 }
13         }
14         
15         public static void Main ()
16         {
17         }
18 }
19
20