blob: 5f49625df7256d79252a1ee7b6e89db63aa07b2d [file] [log] [blame]
abstract class A {
String foo({String bar = "baz"});
int hest([int fisk = 42]);
noSuchMethod(Invocation i) {}
}
class B extends A {}
main() {}