summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/module-code/instn-uniq-env-rec-other_FIXTURE.js
blob: 61cea19ca28c661dd4fe689e8813c099401b249a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// |reftest| skip -- not a test file
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

var first = 4;
let second = 5;
const third = 6;
class fourth {}
function fifth() {}
function* sixth() {}

var seventh = 7;
let eighth = 8;
const ninth = 9;
class tenth {}
function eleventh() {}
function *twelfth() {}