blob: ebdd53bd22c625aaf2d36d2e39e9a0696748636a [file] [log] [blame]
// @dart = 2.9
library test;
class Pair<T, U> {
T t;
U u;
Pair(this.t, this.u);
Pair<U, T> get reversed => new Pair(u, t);
}
main() {}