mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
171 B
Solidity
9 lines
171 B
Solidity
error error(uint a);
|
|
contract C {
|
|
function f() public pure {
|
|
revert error(2);
|
|
}
|
|
}
|
|
// ----
|
|
// ParserError 2314: (6-11): Expected identifier but got 'error'
|