blob: ef9d23558f15a1d8fa4d5ce96d8f48050924cfed [file] [log] [blame]
function foo(f) { f.hasOwnProperty("arguments"); }
noInline(foo);
function bar() {}
foo(bar);
function baz() {
"use strict";
function boo() {}
return boo;
}
foo(baz());