2020-02-27 15:13:55 +00:00
|
|
|
contract C {
|
|
|
|
uint immutable immutable x;
|
|
|
|
uint immutable constant x;
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// ParserError 3109: (32-41): Mutability already set to "immutable"
|
|
|
|
// ParserError 3109: (64-72): Mutability already set to "immutable"
|