add regression test for #1130

This commit is contained in:
Sebastian McKenzie
2015-04-03 06:52:23 +11:00
parent 022e6f26aa
commit 8f79010b16
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
function A() {
let a;
}
function B() {
let a;
}

View File

@@ -0,0 +1,9 @@
"use strict";
function A() {
var a = undefined;
}
function B() {
var a = undefined;
}