solidity/test/libsolidity/semanticTests/constructor/no_callvalue_check.sol

25 lines
517 B
Solidity
Raw Normal View History

contract A1 {}
2020-06-23 12:14:24 +00:00
contract B1 is A1 { constructor() payable {} }
2020-06-23 12:14:24 +00:00
contract A2 { constructor() {} }
contract B2 is A2 { constructor() payable {} }
2020-06-23 12:14:24 +00:00
contract B3 { constructor() payable {} }
contract C {
function f() public payable returns (bool) {
// Make sure none of these revert.
new B1{value: 10}();
new B2{value: 10}();
new B3{value: 10}();
return true;
}
}
// ====
// compileViaYul: also
// ----
// f(), 2000 ether -> true
// gas irOptimized: 123725
2021-02-12 12:45:15 +00:00
// gas legacy: 123226
// gas legacyOptimized: 123092