solidity/test/libsolidity/syntaxTests/constants/assign_constant_function_value.sol
2018-05-09 15:07:47 +02:00

7 lines
244 B
Solidity

contract C {
function () pure returns (uint) x;
uint constant y = x();
}
// ----
// Warning: (74-77): Initial value for constant variable has to be compile-time constant. This will fail to compile with the next breaking version change.