mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
347 B
Plaintext
19 lines
347 B
Plaintext
{
|
|
function f() -> x
|
|
{
|
|
for { leave x := 2 } eq(x, 0) { } {
|
|
}
|
|
}
|
|
{
|
|
let a := f()
|
|
sstore(a, 7)
|
|
}
|
|
}
|
|
// ====
|
|
// EVMVersion: >=constantinople
|
|
// ----
|
|
// Trace:
|
|
// Memory dump:
|
|
// Storage dump:
|
|
// 0000000000000000000000000000000000000000000000000000000000000000: 0000000000000000000000000000000000000000000000000000000000000007
|