solidity/test/libyul/yulSyntaxTests/invalid/verbatim_reserved2.yul
2021-04-26 19:56:44 +02:00

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.