blob: a628815df41316abec910f7180dc616d347b8b12 [file] [log] [blame]
// Expectation for test:
// class A {
// a() => 1;
// b() => () => a();
// }
// main() {
// print(new A().b()());
// }
function() {
var line = H.S(new V.A_b_closure(V.A$()).call$0());
if (typeof dartPrint == "function")
dartPrint(line);
else if (typeof console == "object" && typeof console.log != "undefined")
console.log(line);
else if (!(typeof window == "object")) {
if (!(typeof print == "function"))
throw "Unable to print message: " + String(line);
print(line);
}
}