summaryrefslogtreecommitdiff
path: root/test/files/pos/infer.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2003-04-02 07:32:39 +0000
committerMartin Odersky <odersky@gmail.com>2003-04-02 07:32:39 +0000
commitf115eda9c9bc97313591ca699e07fa2a117cc997 (patch)
treee9040aad58088217db6b3a4c950bd6c257c89cb5 /test/files/pos/infer.scala
parentd8284d61f2f09a72f223c6e9396eec8fa5893d29 (diff)
downloadscala-f115eda9c9bc97313591ca699e07fa2a117cc997.tar.gz
scala-f115eda9c9bc97313591ca699e07fa2a117cc997.tar.bz2
scala-f115eda9c9bc97313591ca699e07fa2a117cc997.zip
*** empty log message ***
Diffstat (limited to 'test/files/pos/infer.scala')
-rw-r--r--test/files/pos/infer.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/infer.scala b/test/files/pos/infer.scala
new file mode 100644
index 0000000000..7e88585ae7
--- /dev/null
+++ b/test/files/pos/infer.scala
@@ -0,0 +1,11 @@
+module test {
+ class List[a] {
+ def ::(x: a): List[a] = new Cons(x, this);
+ }
+ case class Cons[a](x: a, xs: List[a]) extends List[a];
+ case class Nil[a] extends List[a];
+ def nil[a]: Nil[a] = new Nil[a];
+ def cons[a](x: a, xs: List[a]): List[a] = null;
+ val x: List[Int] = Nil.::(1);
+ val y: List[Int] = nil.::(1);
+} \ No newline at end of file