modified: resources/bytecode/javFiles/PaternMatchingHaskellStyle.jav
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 42s
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 42s
This commit is contained in:
parent
5893338783
commit
cc204f659a
@ -1,3 +1,6 @@
|
||||
sealed interface List<T> permits LinkedElem, Elem {}
|
||||
|
||||
public record LinkedElem<T>(T a, List<T> l) implements List<T> {}
|
||||
public record Elem<T>(T a) implements List<T> {}
|
||||
|
||||
public class PaternMatchingHaskellStyle {
|
||||
|
Loading…
Reference in New Issue
Block a user