mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
306 B
Solidity
8 lines
306 B
Solidity
contract C {
|
|
error e1(uint constant x);
|
|
error e2(uint immutable x);
|
|
}
|
|
// ----
|
|
// DeclarationError 1788: (26-41): The "constant" keyword can only be used for state variables or variables at file level.
|
|
// DeclarationError 8297: (57-73): The "immutable" keyword can only be used for state variables.
|