mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
425 B
Plaintext
14 lines
425 B
Plaintext
|
{
|
||
|
let u160max := 0xffffffffffffffffffffffffffffffffffffffff
|
||
|
let a := create(0, u160max, 0)
|
||
|
let b := and(u160max, create(0, u160max, 0))
|
||
|
mstore(0, eq(a, b))
|
||
|
}
|
||
|
// ----
|
||
|
// Trace:
|
||
|
// CREATE(0, 0xffffffffffffffffffffffffffffffffffffffff, 0)
|
||
|
// CREATE(0, 0xffffffffffffffffffffffffffffffffffffffff, 0)
|
||
|
// Memory dump:
|
||
|
// 0: 0000000000000000000000000000000000000000000000000000000000000001
|
||
|
// Storage dump:
|