diff --git a/resources/AllgemeinTest/TripleTest.jav b/resources/AllgemeinTest/TripleTest.jav new file mode 100644 index 00000000..a0560b60 --- /dev/null +++ b/resources/AllgemeinTest/TripleTest.jav @@ -0,0 +1,19 @@ +class Triple { + U a; + T b; + S c; + + Triple(U x, T y, S z) { + a = x; b = y; c = z; + } + + U fst() { return a; } + T snd() { return b; } + S thrd() { return c; } +} + +public class TripleTest { + m() { + return new Triple<>(m().thrd(), m().thrd(), m().thrd()); + } +} \ No newline at end of file