blob: abd51410066423898962ecfbb58345b036792357 [file] [log] [blame]
library test;
class Cloneable<T> {}
class Pair<T extends Cloneable<T>, U extends Cloneable<U>> {
Pair(this.t, this.u);
Pair._();
Pair<U, T> get reversed => new Pair(u, t);
T? t;
U? u;
}
main() {}