summaryrefslogtreecommitdiff
path: root/test/files/pos/t3312.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3312.scala')
-rw-r--r--test/files/pos/t3312.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t3312.scala b/test/files/pos/t3312.scala
index 9bf3e23ed3..aef965d2e7 100644
--- a/test/files/pos/t3312.scala
+++ b/test/files/pos/t3312.scala
@@ -12,6 +12,6 @@ trait B extends Root {
object Foo extends A with B {
override def say: String = foo(super[A].say)
-
+
def foo(p: => String): String = p
}