summaryrefslogtreecommitdiff
path: root/test/files/pos/spec-traits.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/spec-traits.scala')
-rw-r--r--test/files/pos/spec-traits.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/pos/spec-traits.scala b/test/files/pos/spec-traits.scala
index 8b1fefe80f..c6cc2921b7 100644
--- a/test/files/pos/spec-traits.scala
+++ b/test/files/pos/spec-traits.scala
@@ -11,12 +11,12 @@ class Lazy {
// issue 3307
class Bug3307 {
- def f[Z](block: String => Z) {
- block("abc")
+ def f[Z](block: String => Z) {
+ block("abc")
}
-
- ({ () =>
- f { implicit x => println(x) } })()
+
+ ({ () =>
+ f { implicit x => println(x) } })()
}
// issue 3301