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