Remove left over example code
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 6m28s

This commit is contained in:
Daniel Holle 2024-10-04 15:05:46 +02:00
parent 6ee308a712
commit 44754e73ac

View File

@ -1,6 +0,0 @@
sealed interface List<T> permits LinkedElem, Elem {}
record LinkedElem<T>(T a, List<T> l) implements List<T> {}
record Elem<T>(T a) implements List<T> {}
public class SwitchAppend {}