summaryrefslogtreecommitdiff
path: root/test/files/pos/t1745
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/files/pos/t1745
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/files/pos/t1745')
-rw-r--r--test/files/pos/t1745/J.java10
-rw-r--r--test/files/pos/t1745/S.scala7
2 files changed, 17 insertions, 0 deletions
diff --git a/test/files/pos/t1745/J.java b/test/files/pos/t1745/J.java
new file mode 100644
index 0000000000..8444eabb24
--- /dev/null
+++ b/test/files/pos/t1745/J.java
@@ -0,0 +1,10 @@
+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/files/pos/t1745/S.scala b/test/files/pos/t1745/S.scala
new file mode 100644
index 0000000000..70210ba502
--- /dev/null
+++ b/test/files/pos/t1745/S.scala
@@ -0,0 +1,7 @@
+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