summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2009-05-26 18:24:54 +0000
committerMartin Odersky <odersky@gmail.com>2009-05-26 18:24:54 +0000
commit7702b798955247752bf1c0108cef02d4f81a030e (patch)
tree9abd7a3db873d73001a9ecb228d0f9d7f27fabe5 /test
parentbd119a13d690dfc7d54e987bb53b5aeab9e53ffd (diff)
downloadscala-7702b798955247752bf1c0108cef02d4f81a030e.tar.gz
scala-7702b798955247752bf1c0108cef02d4f81a030e.tar.bz2
scala-7702b798955247752bf1c0108cef02d4f81a030e.zip
disabled to failing tests for now.
Diffstat (limited to 'test')
-rwxr-xr-xtest/files/pos/t0851.scala.disabled (renamed from test/files/pos/t0851.scala)0
-rwxr-xr-xtest/files/pos/t0872.scala.disabled8
2 files changed, 8 insertions, 0 deletions
diff --git a/test/files/pos/t0851.scala b/test/files/pos/t0851.scala.disabled
index fc7109dcd4..fc7109dcd4 100755
--- a/test/files/pos/t0851.scala
+++ b/test/files/pos/t0851.scala.disabled
diff --git a/test/files/pos/t0872.scala.disabled b/test/files/pos/t0872.scala.disabled
new file mode 100755
index 0000000000..6dc02497ab
--- /dev/null
+++ b/test/files/pos/t0872.scala.disabled
@@ -0,0 +1,8 @@
+object Main {
+ def main(args : Array[String]) {
+ val fn = (a : Int, str : String) => "a: " + a + ", str: " + str
+ implicit def fx[T](f : (T,String) => String) = (x:T) => f(x,null)
+ println(fn(1))
+ ()
+ }
+}