mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-05-08 13:38:12 +00:00
17832855e0
Signed-off-by: xermicus <cyrill@parity.io>
10 lines
162 B
Solidity
10 lines
162 B
Solidity
contract MSize {
|
|
uint[] public data;
|
|
|
|
function mSize() public pure returns (uint size) {
|
|
assembly {
|
|
size := msize()
|
|
}
|
|
}
|
|
}
|