blob: e589971379063e562dc228bc06b07dabc9c8652e [file] [log] [blame]
// Expectation for test:
// class Foo {
// get getter {
// print('getter');
// return (x) { try { return x; } finally { } }; // Inhibit inlining.
// }
// }
// main(x) {
// // Getter may or may not be inlined.
// var notTearOff = new Foo().getter;
// // Closure is not inlined.
// print(notTearOff(123));
// }
function(x) {
P.print(V.Foo$().get$getter().call$1(123));
}