blob: b55b3b74b33d8ddade12d9dfb90c0b34a9272258 [file] [log] [blame]
abstract class CustomType implements Type {
void call() {}
}
abstract class CustomInvocation implements Invocation {}
abstract class Class {
CustomType get runtimeType;
String noSuchMethod(covariant CustomInvocation invocation);
bool operator ==(covariant Class o);
String toString({Object o});
}
main() {}
void test(
Class c1,
Class? c2,
Invocation invocation,
CustomInvocation customInvocation,
) {}