solidity/test/libsolidity/syntaxTests/controlFlow/unreachableCode/for_break.sol
2019-01-10 10:36:50 +01:00

13 lines
252 B
Solidity

contract C {
function f() public pure {
for (uint a = 0; a < 1; a++) {
break;
uint b = 42; b;
}
return;
}
}
// ----
// Warning: (76-79): Unreachable code.
// Warning: (114-128): Unreachable code.