blob: d9f97f5eb99fe1669730477cdc3b48f9a26f485a [file] [log] [blame]
description(
"This page tests for proper backtracking with greedy quantifiers and non-capturing parentheses."
);
var re = /(?:a*)a/;
shouldBe("re.exec('a')", "['a']");