summaryrefslogtreecommitdiff
path: root/test/pending/jvm/javasigs.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/jvm/javasigs.scala')
-rw-r--r--test/pending/jvm/javasigs.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/pending/jvm/javasigs.scala b/test/pending/jvm/javasigs.scala
index 48fa37119a..8da59ab0a0 100644
--- a/test/pending/jvm/javasigs.scala
+++ b/test/pending/jvm/javasigs.scala
@@ -30,7 +30,7 @@ object Scalatest {
s.start()
s
}
-
+
/** Execute cmd, wait for the process to end and pipe it's output to stdout */
def exec(cmd: String) {
@@ -50,12 +50,12 @@ object Scalatest {
// Test correct java signatures for anonymous classes. Enclosing method attributes should
// allow javac to see the type parameters in foo. See #3249.
-class A[U] {
+class A[U] {
def bar[B](x : => B) = x
def foo[C](c : C) : C = bar(c)
}
-object B {
+object B {
def bar[B](x : => B) = x
def foo[C](c : C) : C = {
class InnerB(x: C)