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