summaryrefslogtreecommitdiff
path: root/test/files/run/t6259.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6259.scala')
-rw-r--r--test/files/run/t6259.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t6259.scala b/test/files/run/t6259.scala
index 294c95e96b..b2c27df51f 100644
--- a/test/files/run/t6259.scala
+++ b/test/files/run/t6259.scala
@@ -37,9 +37,9 @@ object Early extends {
class DoubleTrouble[X](x: AnyRef)(implicit override val tt: TypeTag[X]) extends A[X]
object DoubleOk extends DoubleTrouble[String]({
- // Drops to this.getClass and is an issue
- object InnerTrouble extends A[String];
- InnerTrouble
+ // Drops to this.getClass and is an issue
+ object InnerTrouble extends A[String];
+ InnerTrouble
})
object Test extends App {