summaryrefslogtreecommitdiff
path: root/test/files/pos5/t1186
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2009-03-30 12:26:51 +0000
committerIulian Dragos <jaguarul@gmail.com>2009-03-30 12:26:51 +0000
commit8087f9b529ad79a403a29117408632366a7534d9 (patch)
tree8b4433279a2352ad4ff4914856a709a418ea7fee /test/files/pos5/t1186
parentb62a73e023b4dad90f1712c448fdf9f456b8ebcf (diff)
downloadscala-8087f9b529ad79a403a29117408632366a7534d9.tar.gz
scala-8087f9b529ad79a403a29117408632366a7534d9.tar.bz2
scala-8087f9b529ad79a403a29117408632366a7534d9.zip
Fixed Java signatures of forwarders for inherit...
Fixed Java signatures of forwarders for inherited members, and references to scala.Nothing are translated to scala.runtime.Nothing$ (see #1254, #1822, #1555). Moved a Java test that was not run to its proper subdirectory, to make partest happy.
Diffstat (limited to 'test/files/pos5/t1186')
-rw-r--r--test/files/pos5/t1186/t1186.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/pos5/t1186/t1186.java b/test/files/pos5/t1186/t1186.java
new file mode 100644
index 0000000000..c1bfcecab8
--- /dev/null
+++ b/test/files/pos5/t1186/t1186.java
@@ -0,0 +1,8 @@
+import scala.collection.immutable.Map;
+
+class Test {
+
+ void foo() {
+ Map<String, String> map = null;
+ }
+} \ No newline at end of file