• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2014 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
5var filler = "//" + new Array(('@')).join('x');
6
7// Test strict eval in global context.
8eval(
9  "'use strict';" +
10  "var x = 23;" +
11  "var f = function bozo1() {" +
12  "  return x;" +
13  "};" +
14  "f;" +
15  filler
16)();
17