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