Home | History | Annotate | Download | only in regress
      1 // Copyright 2016 the V8 project authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 // https://bugs.chromium.org/p/v8/issues/detail?id=4769
      6 
      7 Object.getPrototypeOf([])[Symbol.iterator] = () => assertUnreachable();
      8 
      9 JSON.stringify({foo: [42]});
     10 JSON.stringify({foo: [42]}, []);
     11 JSON.stringify({foo: [42]}, undefined, ' ');
     12 JSON.stringify({foo: [42]}, [], ' ');
     13