aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg-with-implicits/t2405.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg-with-implicits/t2405.scala')
-rw-r--r--tests/untried/neg-with-implicits/t2405.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/untried/neg-with-implicits/t2405.scala b/tests/untried/neg-with-implicits/t2405.scala
index 6982285b9..c005e7a54 100644
--- a/tests/untried/neg-with-implicits/t2405.scala
+++ b/tests/untried/neg-with-implicits/t2405.scala
@@ -2,9 +2,9 @@ object A { implicit val x: Int = 1 }
// Expecting shadowing #1
object Test2 {
- {
- import A.{x => y}
- def y: Int = 0
- implicitly[Int]
- }
+ {
+ import A.{x => y}
+ def y: Int = 0
+ implicitly[Int]
+ }
}