blob: fae94837d464d98614e814a12da2a21ba6f17fa0 [file] [log] [blame]
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001// 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)();