mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
343 B
Plaintext
14 lines
343 B
Plaintext
object "RunsTest1" {
|
|
code {
|
|
// Deploy the contract
|
|
datacopy(0, dataoffset("Runtime_deployed"), datasize("Runtime_deployed"))
|
|
return(0, datasize("Runtime_deployed"))
|
|
}
|
|
object "Runtime_deployed" {
|
|
code {
|
|
let funcSel := shl(224, 0xabc12345)
|
|
sstore(0, funcSel)
|
|
}
|
|
}
|
|
}
|