blob: 14564089f0df65a9da6e38b1c6016d5528e173ef [file] [log] [blame]
library test;
class C {
bool g() => true;
}
C f() => throw '';
var x = f().g();
main() {}