* TraceListener.cs: Make sure that indents are initially written. This allows
[mono.git] / mcs / errors / bug15.cs
1 //
2 // fixed
3 //
4 using System;
5
6 class X {
7
8         void A ()
9         {
10         }
11                                 
12         static void Main ()
13         {
14                 int loop = 0;
15                 
16                 goto a;
17         b:
18                 loop++;
19         a:
20                 Console.WriteLine ("Hello");
21                 for (;;){
22                         goto b;
23                 }
24         }
25 }