summaryrefslogtreecommitdiff
path: root/test/files/neg/t2139.scala
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2009-11-30 19:00:20 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2009-11-30 19:00:20 +0000
commit4559f45c7ede9f11c1108dc14df1676ce181d32c (patch)
tree60527697ae7eec681f9dfd9885841bc6dd1a40f3 /test/files/neg/t2139.scala
parent706c86380e035a07a9f33eec20111b35368a6271 (diff)
downloadscala-4559f45c7ede9f11c1108dc14df1676ce181d32c.tar.gz
scala-4559f45c7ede9f11c1108dc14df1676ce181d32c.tar.bz2
scala-4559f45c7ede9f11c1108dc14df1676ce181d32c.zip
(Temporarily) closes #2139
Diffstat (limited to 'test/files/neg/t2139.scala')
-rw-r--r--test/files/neg/t2139.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/neg/t2139.scala b/test/files/neg/t2139.scala
new file mode 100644
index 0000000000..4f09b5a5d1
--- /dev/null
+++ b/test/files/neg/t2139.scala
@@ -0,0 +1,15 @@
+/*
+ NOTE: if inference is changed so that
+ T is inferred to be Int, rather than Nothing,
+ the piece of code below will start to compile OK.
+ In that case, see ticket #2139, and make sure that
+ the generated code will no longer crash!
+*/
+class U {
+ def f[T](x:T):T=x
+}
+object H extends Application {
+ val u=new U
+ val z:Int=(u.f _)(4)
+ println("done")
+}