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