// Copyright (C) 2017 Caio Lima. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
desc: >
    Object rest element needs to be the last AssignmentProperty
    in ObjectAssignmentPattern.
template: syntax
esid: pending
negative:
  phase: parse
  type: SyntaxError
features: [object-rest]
---*/

//- setup
$DONOTEVALUATE();
var rest, b;
//- elems
{...rest, b}
//- vals
{}

