mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
262 B
Solidity
13 lines
262 B
Solidity
contract C {
|
|
function f() public pure {
|
|
for (uint a = 0; a < 1; a++) {
|
|
break;
|
|
uint b = 42; b;
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 5740: (76-79): Unreachable code.
|
|
// Warning 5740: (114-128): Unreachable code.
|