blob: 987a3a8a2b7010821a52c9465dfafc6f4494d424 [file] [log] [blame]
description(
"Tests that CSE doesn't try to match against a dead GetScopedVar."
);
function foo(a) {
var x = a;
return function(p) {
if (p) {
var tmp = x;
return x;
}
return 42;
};
}
dfgShouldBe(foo(0), "foo(i)(false)", "42");