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