mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
5 lines
211 B
Solidity
5 lines
211 B
Solidity
uint immutable x = 7;
|
|
// ----
|
|
// DeclarationError 8342: (0-20): Only constant variables are allowed at file level.
|
|
// DeclarationError 8297: (0-20): The "immutable" keyword can only be used for state variables.
|