cleol
[mcs.git] / errors / cs0161-2.cs
blobf51a90d7424fdef2f8f0333efc9a03ef96f30f4d
1 // cs0161-2.cs: `Test.Main()': not all code paths return a value
2 // Line: 4
3 class Test {
4 static int Main () {
5 bool b = false;
6 while (true) {
7 if (b)
8 break;
9 else
10 break;