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