solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/363_non_payable_constructor.sol

12 lines
264 B
Solidity
Raw Normal View History

contract C {
constructor() public { }
}
contract D {
function f() public returns (uint) {
(new C).value(2)();
return 2;
}
}
// ----
// TypeError: (106-119): Constructor for contract C must be payable for member "value" to be available.