solidity/test/libsolidity/ABIJson/internal_constructor.sol
2020-07-07 12:16:18 +02:00

10 lines
159 B
Solidity

// bug #8712
abstract contract B {
uint immutable x;
constructor(function() internal returns(uint) fp) {
x = fp(); }
}
// ----
// :B
// []