[Mono.Profiler.Log] Support MLPD version 13
[mono.git] / mcs / tests / test-debug-28.cs
1 public class StatementsAsBlocks
2 {
3         static void ForEach (string[] args)
4         {
5                 foreach (var v in args)
6                         ;
7                 foreach (var v in args)
8                         ;
9         }
10         
11         public static int Main ()
12         {
13                 return 0;
14         }
15 }