Files
solidity/test/libsolidity/syntaxTests/controlFlow/unreachableCode/for_break.sol
T

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.