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