mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
186 B
Solidity
7 lines
186 B
Solidity
contract C {
|
|
function () pure returns (uint) x;
|
|
uint constant y = x();
|
|
}
|
|
// ----
|
|
// TypeError 8349: (74-77): Initial value for constant variable has to be compile-time constant.
|