blob: cd8e0498c28b127c022233df55bb3bdab8219374 [file] [log] [blame]
staticMethod(x) { print(x); return x; }
main(x) {
var tearOff = staticMethod;
print(tearOff(123));
}