blob: 9d78bdf1a74d8e8367c456948df0b1ec6c750613 [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) {}