blob: f3eaf03cc3e82d75e7a7cbebdf9496ce12524945 [file] [log] [blame]
// @dart = 2.9
library private;
import './private_module.dart' show Fisk;
abstract class Foo {
dynamic noSuchMethod(Invocation invocation) => 42;
}
class Bar extends Foo implements Fisk {}
class Baz extends Foo implements Fisk {
_hest() => null;
}
main() {}