Ignore runtime configuration files generated during quality assurance.
1 // "let" is not allowed as an identifier.
3 assertThrowsInstanceOf(function () { eval('[for (let of y) foo]') }, SyntaxError);
4 assertThrowsInstanceOf(function () { eval('(for (let of y) foo)') }, SyntaxError);
6 reportCompare(null, null, "test");