Fix makefile
[mono.git] / mcs / tests / test-189.cs
1 using System;
2
3 class X
4 {
5         static int Main ()
6         {
7                 while (true) {
8                         break;
9
10                         while (true)
11                                 Console.WriteLine ("Test");
12                 }
13
14                 return 0;
15         }
16 }