summaryrefslogtreecommitdiff
path: root/test/pending/pos
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-08-03 11:41:17 +0000
committerPaul Phillips <paulp@improving.org>2009-08-03 11:41:17 +0000
commitcf7a2f64f1357dcfa8ecf78ae8f29880c9fab214 (patch)
treefa588f8829c509e840ea4482ce04dba7d7dd70af /test/pending/pos
parent9780704595af0c861fed2a4233408335418cec81 (diff)
downloadscala-cf7a2f64f1357dcfa8ecf78ae8f29880c9fab214.tar.gz
scala-cf7a2f64f1357dcfa8ecf78ae8f29880c9fab214.tar.bz2
scala-cf7a2f64f1357dcfa8ecf78ae8f29880c9fab214.zip
Re-enabled forwarders and moved the formerly fa...
Re-enabled forwarders and moved the formerly failing tests for #363 and #1745 out of pending.
Diffstat (limited to 'test/pending/pos')
-rw-r--r--test/pending/pos/t1745/J.java10
-rw-r--r--test/pending/pos/t1745/S.scala7
2 files changed, 0 insertions, 17 deletions
diff --git a/test/pending/pos/t1745/J.java b/test/pending/pos/t1745/J.java
deleted file mode 100644
index 8444eabb24..0000000000
--- a/test/pending/pos/t1745/J.java
+++ /dev/null
@@ -1,10 +0,0 @@
-class J {
- S1 s1;
- S2 s2;
-
- String s = bar(S3.foo(), S3.bar("def"));
-
- private String bar(String s1, String s2) {
- return s1 + s2;
- }
-}
diff --git a/test/pending/pos/t1745/S.scala b/test/pending/pos/t1745/S.scala
deleted file mode 100644
index 70210ba502..0000000000
--- a/test/pending/pos/t1745/S.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-case class S1(n: Int) { }
-case class S2(n: Int, p: Int) { }
-class S3 { }
-object S3 {
- def foo() = "abc"
- def bar[T](x: T): T = x
-} \ No newline at end of file