a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
191 B
C#
15 lines
191 B
C#
// CS0161: `Test.Main()': not all code paths return a value
|
|
// Line: 4
|
|
class Test {
|
|
static int Main () {
|
|
bool b = false;
|
|
while (true) {
|
|
if (b)
|
|
break;
|
|
else
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|