blob: 2d4d7227af10459af2cc18a4fff10767fbee0d7c [file] [log] [blame]
typedef A<X> = B<X, Function(X)>;
class B<T, Invariance extends Function(T)> {
B(_);
B() : this._(1);
}
test() {}