File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ NonVal:
13
13
X:
14
14
private final int X.theValue$$local
15
15
Y:
16
- private final int Y.theValue$$local
16
+
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class Bz extends A(42) {
19
19
val theValueInBz = theValue
20
20
}
21
21
22
- // C does not contains a field C.theValue$$local, it contains
22
+ // C does not contain a field C.theValue$$local, it contains
23
23
// a getter C.theValue() which only calls super.theValue()
24
24
class C (override val theValue : Int ) extends A (theValue)
25
25
@@ -36,8 +36,8 @@ class NonVal(theValue: Int) extends A(theValue) {
36
36
// X.theValue() which overrides A.theValue()
37
37
class X (override val theValue : Int ) extends NonVal (0 )
38
38
39
- // Y contains a field Y.theValue$$local accessible using the getter
40
- // Y.theValue() which overrides A .theValue()
39
+ // Y does not contain a field Y.theValue$$local, it contains
40
+ // a getter Y.theValue() which only calls super .theValue()
41
41
class Y (override val theValue : Int ) extends NonVal (theValue)
42
42
43
43
You can’t perform that action at this time.
0 commit comments