summaryrefslogtreecommitdiff
path: root/test/files/pos/t1745/J.java
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/J.java
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/J.java')
-rw-r--r--test/files/pos/t1745/J.java10
1 files changed, 10 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;
+ }
+}