mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
381 B
Plaintext
10 lines
381 B
Plaintext
{
|
|
let verbatim := 2
|
|
let verbatim_abc := 3
|
|
function verbatim_fun() {}
|
|
}
|
|
// ----
|
|
// DeclarationError 5017: (10-18): The identifier "verbatim" is reserved and can not be used.
|
|
// DeclarationError 5017: (32-44): The identifier "verbatim_abc" is reserved and can not be used.
|
|
// DeclarationError 5017: (54-80): The identifier "verbatim_fun" is reserved and can not be used.
|