[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0161-2.cs
1 // CS0161: `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;
11                 }
12         }
13 }
14