From cf7a2f64f1357dcfa8ecf78ae8f29880c9fab214 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 3 Aug 2009 11:41:17 +0000 Subject: Re-enabled forwarders and moved the formerly fa... Re-enabled forwarders and moved the formerly failing tests for #363 and #1745 out of pending. --- test/files/pos/t1745/J.java | 10 ++++++++++ test/files/pos/t1745/S.scala | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 test/files/pos/t1745/J.java create mode 100644 test/files/pos/t1745/S.scala (limited to 'test/files/pos/t1745') 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 -- cgit v1.2.3