mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
335 B
Solidity
14 lines
335 B
Solidity
contract C {
|
|
function f() public pure {
|
|
assembly {
|
|
for { let a := 0} lt(a,1) { a := add(a, 1) } {
|
|
break
|
|
let b := 42
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 5740: (103-117='a := add(a, 1)'): Unreachable code.
|
|
// Warning 5740: (160-171='let b := 42'): Unreachable code.
|