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