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