blob: 9e787fa8d4e5ba5324bf3112c98b188e1af95533 [file] [log] [blame]
class Foo {
instanceMethod(x) => x;
}
main(x) {
var tearOff = new Foo().instanceMethod;
print(tearOff(123));
}