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