solidity/test/libsolidity/syntaxTests/functionCalls/new_with_calloptions.sol
2020-01-23 21:20:01 +01:00

13 lines
246 B
Solidity

contract D { constructor() public payable {} }
contract C {
function foo() pure internal {
new D{salt:"abc", value:3};
new D{salt:"abc"};
new D{value:5+5};
new D{salt:"aabbcc"};
}
}
// ====
// EVMVersion: >=constantinople
// ----