summaryrefslogtreecommitdiff
path: root/test/files/pos/t711.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t711.scala')
-rw-r--r--test/files/pos/t711.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t711.scala b/test/files/pos/t711.scala
index 10b410e54e..4dd6040969 100644
--- a/test/files/pos/t711.scala
+++ b/test/files/pos/t711.scala
@@ -2,7 +2,7 @@ abstract class Component
class Button extends Component {
def sayHey: Unit = Console.println("Hey, I'm a button") }
-
+
abstract class Origin {
val delegate: Component }