solidity/test/libsolidity/semanticTests/various/create_calldata.sol
Matheus Aguiar 562b6ea7a8 Update tests
2023-08-24 15:33:21 -03:00

15 lines
330 B
Solidity

contract C {
bytes public s;
constructor(uint256 x) {
// Due to a bug in EVMHost, msg.data used to contain initcode and constructor arguments.
s = msg.data;
assert(msg.data.length == 0);
}
}
// ----
// constructor(): 42 ->
// gas irOptimized: 144924
// gas legacy: 173845
// gas legacyOptimized: 138325
// s() -> 0x20, 0