blob: 507816980e83af86336e996e187cefbe36b1b891 [file] [log] [blame]
// Expectation for test:
// class Foo {
// instanceMethod(x) => x;
// }
// main(x) {
// var tearOff = new Foo().instanceMethod;
// print(tearOff(123));
// }
function(x) {
V.Foo$();
P.print(123);
}