blob: dd684314db6005c59ae4cdc584397e9a73f80c6c [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() {}