mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 11:19:22 +07:00
18 lines
303 B
Java
18 lines
303 B
Java
public class Seq<T> {
|
|
public Seq() {}
|
|
|
|
public Seq(T x, Seq<T> xs) {
|
|
}
|
|
|
|
static <T> Seq<T> nil () {
|
|
return new Seq<T> ();
|
|
}
|
|
|
|
static <V> Seq<V> cons (V x, Seq<V> xs) {
|
|
return new Seq<V> (x, xs);
|
|
}
|
|
|
|
static void foo() {
|
|
(Seq<String>)<ref>nil();
|
|
}
|
|
} |