summaryrefslogtreecommitdiff
path: root/test/files/run/t1430
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t1430')
-rw-r--r--test/files/run/t1430/Bar_1.java4
-rw-r--r--test/files/run/t1430/Test_2.scala2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t1430/Bar_1.java b/test/files/run/t1430/Bar_1.java
index 4db2eafcbd..e49b6becb2 100644
--- a/test/files/run/t1430/Bar_1.java
+++ b/test/files/run/t1430/Bar_1.java
@@ -2,7 +2,7 @@ package j;
interface Foo {
public void foo();
-}
+}
public interface Bar_1 extends Foo {
public void bar();
-}
+}
diff --git a/test/files/run/t1430/Test_2.scala b/test/files/run/t1430/Test_2.scala
index 7af65de5cd..278d9c7fd3 100644
--- a/test/files/run/t1430/Test_2.scala
+++ b/test/files/run/t1430/Test_2.scala
@@ -6,7 +6,7 @@ package s {
class Baz(x: j.Bar_1) {
x.foo
override def toString = "Baz"
- }
+ }
}
object Test {