summaryrefslogtreecommitdiff
path: root/test/files/run/t7507.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t7507.scala')
-rw-r--r--test/files/run/t7507.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/run/t7507.scala b/test/files/run/t7507.scala
index 6c1959ddac..a5eab6248f 100644
--- a/test/files/run/t7507.scala
+++ b/test/files/run/t7507.scala
@@ -4,6 +4,10 @@ trait Cake extends Slice
trait Slice { self: Cake => // must have self type that extends `Slice`
private[this] val bippy = () // must be private[this]
locally(bippy)
+ class C1 {
+ locally(bippy)
+ locally(self.bippy)
+ }
}
// Originally reported bug: