solidity/test/libyul/yulSyntaxTests/are_we_perl_yet.yul
2022-04-01 23:41:18 -05:00

13 lines
658 B
Plaintext

{
function _...($..) {}
let a...
_...(a...)
}
// ----
// SyntaxError 3384: (6-27='function _...($..) {}'): "_..." is not a valid identifier (ends with a dot).
// SyntaxError 7771: (6-27='function _...($..) {}'): "_..." is not a valid identifier (contains consecutive dots).
// SyntaxError 3384: (20-23='$..'): "$.." is not a valid identifier (ends with a dot).
// SyntaxError 7771: (20-23='$..'): "$.." is not a valid identifier (contains consecutive dots).
// SyntaxError 3384: (36-40='a...'): "a..." is not a valid identifier (ends with a dot).
// SyntaxError 7771: (36-40='a...'): "a..." is not a valid identifier (contains consecutive dots).