JavaCompilerCore/resources/bytecode/javFiles/Pair.jav
Daniel Holle 26452eb5de
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 3m19s
Fix #286
2024-03-11 16:16:10 +01:00

17 lines
165 B
Java

import java.util.Vector;
import java.lang.Boolean;
import java.lang.Object;
class Pair<T, U> {
T x;
U y;
fst () {
return x;
}
snd () {
return y;
}
}