From 0dc738dd1377577a4004bfe158b11bfb1fa59a9d Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Fri, 28 Oct 2016 22:52:16 +0200 Subject: Fix partest compilation of java-interop tests by moving them Previously, the tests where all in tests/pos/java-interop which means that partest would try to run them as one single test, this failed because some of these tests define classes with the same name. We could fix this by putting them all in separate packages but for now it's simple to move them to tests/pos-java-interop (they will still be run individually as they should thanks to the `java_all` test defined in tests.scala) --- tests/pos/java-interop/t1186/t1186.java | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 tests/pos/java-interop/t1186/t1186.java (limited to 'tests/pos/java-interop/t1186') diff --git a/tests/pos/java-interop/t1186/t1186.java b/tests/pos/java-interop/t1186/t1186.java deleted file mode 100644 index 5f2607623..000000000 --- a/tests/pos/java-interop/t1186/t1186.java +++ /dev/null @@ -1,8 +0,0 @@ -import scala.collection.immutable.Map; - -class Test { - - void foo() { - Map map = null; - } -} -- cgit v1.2.3