File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ package O {
55 class C() extends Object() {
66 protected[D] def a: Int = 0
77 private[D] def b: Int = 0
8- private def c: Int = 0
8+ private[this] def c: Int = 0
99 protected def d: Int = 0
1010 private[A] def e: Int = 0
1111 protected[A] def f: Int = 0
@@ -14,15 +14,15 @@ package O {
1414 def (c: D.this.C) g1: Int = 0
1515 }
1616 private[D] class E() extends Object() {}
17- private class F() extends Object() {}
17+ private[this] class F() extends Object() {}
1818 private[A] class G() extends Object() {}
1919 protected[D] class H() extends Object() {}
2020 protected class I() extends Object() {}
2121 protected[A] class J() extends Object() {}
2222 class K() extends Object() {}
2323 protected[D] val a: Int = 0
2424 private[D] val b: Int = 0
25- private val c: Int = 0
25+ private[this] val c: Int = 0
2626 protected val d: Int = 0
2727 private[A] val e: Int = 0
2828 protected[A] val f: Int = 0
You can’t perform that action at this time.
0 commit comments