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