Timothy Gu 5249b9d809 Remove ES2015 tests than do not parse in ES2016 (#4501)
These tests are originally from Traceur, which does not fully support
ES2016.

See babel/babylon#106 for a rationale why these code blocks are not
valid ES2016.
2016-09-11 21:58:38 -04:00

11 lines
123 B
JavaScript

function g() {
'use strict';
function h(x, y = function(x) {}) {
}
var h2 = (x, y = function(x) {}) => {
};
}