mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
21 lines
470 B
Solidity
21 lines
470 B
Solidity
contract D {
|
|
function f() public pure returns (uint256) {
|
|
return 7;
|
|
}
|
|
}
|
|
|
|
|
|
contract C {
|
|
function diff() public pure returns (uint256 remainder) {
|
|
bytes memory a = type(D).creationCode;
|
|
bytes memory b = type(D).runtimeCode;
|
|
assembly {
|
|
remainder := mod(sub(b, a), 0x20)
|
|
}
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// diff() -> 0 # This checks that the allocation function pads to multiples of 32 bytes #
|