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