mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 23:42:15 +00:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
/(abc)\//ig;
|
|
/(abc)\//;
|
|
let re = /(abc)\//ig;
|
|
let noRe = !/(abc)\//i;
|
|
b / ig;
|
|
// ERROR 1161: "Unterminated regular expression literal." in regexp.ts @ 75,76
|