mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
339 B
Solidity
15 lines
339 B
Solidity
==== Source: A ====
|
|
contract test {
|
|
function f(uint a) public {
|
|
uint constant a;
|
|
}
|
|
}
|
|
==== Source: B ====
|
|
contract test {
|
|
function f(uint a) public {
|
|
uint immutable a;
|
|
}
|
|
}
|
|
// ----
|
|
// ParserError 2314: (A:61-69): Expected ';' but got 'constant'
|
|
// ParserError 2314: (B:61-70): Expected ';' but got 'immutable' |