2019-01-08 18:33:46 +00:00
|
|
|
contract C {
|
|
|
|
function f() public pure {
|
|
|
|
for (uint a = 0; a < 1; a++) {
|
|
|
|
break;
|
|
|
|
uint b = 42; b;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// Warning 5740: (76-79): Unreachable code.
|
|
|
|
// Warning 5740: (114-128): Unreachable code.
|