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