|
| 1 | +-- [E052] Type Error: tests/neg/i22671.explain.scala:14:6 -------------------------------------------------------------- |
| 2 | +14 | X.w = 27 // error |
| 3 | + | ^^^^^^^^ |
| 4 | + | Assignment to value w |
| 5 | + |-------------------------------------------------------------------------------------------------------------------- |
| 6 | + | Explanation (enabled by `-explain`) |
| 7 | + |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| 8 | + | Members defined using `val` or `def` can't be assigned to. |
| 9 | + | If you need to change the value of w, use `var` instead: |
| 10 | + | var w = ... |
| 11 | + | However, it's more common to initialize a variable just once |
| 12 | + | with a complex expression or even a block with many statements: |
| 13 | + | val w = if (condition) 1 else -1 |
| 14 | + | Also, assignment syntax can be used if there is a corresponding setter: |
| 15 | + | def w_=(x: Int): Unit = _v = x |
| 16 | + -------------------------------------------------------------------------------------------------------------------- |
| 17 | +-- [E052] Type Error: tests/neg/i22671.explain.scala:17:6 -------------------------------------------------------------- |
| 18 | +17 | X.x = 27 // error |
| 19 | + | ^^^^^^^^ |
| 20 | + | Assignment to method x |
| 21 | + |-------------------------------------------------------------------------------------------------------------------- |
| 22 | + | Explanation (enabled by `-explain`) |
| 23 | + |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| 24 | + | Members defined using `val` or `def` can't be assigned to. |
| 25 | + | If you need to change the value of x, use `var` instead: |
| 26 | + | var x = ... |
| 27 | + | However, it's more common to initialize a variable just once |
| 28 | + | with a complex expression or even a block with many statements: |
| 29 | + | val x = if (condition) 1 else -1 |
| 30 | + | Also, assignment syntax can be used if there is a corresponding setter: |
| 31 | + | def x_=(x: Int): Unit = _v = x |
| 32 | + -------------------------------------------------------------------------------------------------------------------- |
| 33 | +-- [E052] Type Error: tests/neg/i22671.explain.scala:21:4 -------------------------------------------------------------- |
| 34 | +21 | y = 27 // error overload renamed |
| 35 | + | ^^^^^^ |
| 36 | + | Assignment to method x |
| 37 | + |-------------------------------------------------------------------------------------------------------------------- |
| 38 | + | Explanation (enabled by `-explain`) |
| 39 | + |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| 40 | + | Members defined using `val` or `def` can't be assigned to. |
| 41 | + | If you need to change the value of x, use `var` instead: |
| 42 | + | var x = ... |
| 43 | + | However, it's more common to initialize a variable just once |
| 44 | + | with a complex expression or even a block with many statements: |
| 45 | + | val x = if (condition) 1 else -1 |
| 46 | + | Also, assignment syntax can be used if there is a corresponding setter: |
| 47 | + | def x_=(x: Int): Unit = _v = x |
| 48 | + -------------------------------------------------------------------------------------------------------------------- |
| 49 | +-- [E052] Type Error: tests/neg/i22671.explain.scala:25:4 -------------------------------------------------------------- |
| 50 | +25 | y = 27 // error val renamed |
| 51 | + | ^^^^^^ |
| 52 | + | Assignment to value z |
| 53 | + |-------------------------------------------------------------------------------------------------------------------- |
| 54 | + | Explanation (enabled by `-explain`) |
| 55 | + |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| 56 | + | Members defined using `val` or `def` can't be assigned to. |
| 57 | + | If you need to change the value of z, use `var` instead: |
| 58 | + | var z = ... |
| 59 | + | However, it's more common to initialize a variable just once |
| 60 | + | with a complex expression or even a block with many statements: |
| 61 | + | val z = if (condition) 1 else -1 |
| 62 | + | Also, assignment syntax can be used if there is a corresponding setter: |
| 63 | + | def z_=(x: Int): Unit = _v = x |
| 64 | + -------------------------------------------------------------------------------------------------------------------- |
| 65 | +-- [E052] Type Error: tests/neg/i22671.explain.scala:29:4 -------------------------------------------------------------- |
| 66 | +29 | x = 27 // error local |
| 67 | + | ^^^^^^ |
| 68 | + | Assignment to value x |
| 69 | + |-------------------------------------------------------------------------------------------------------------------- |
| 70 | + | Explanation (enabled by `-explain`) |
| 71 | + |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| 72 | + | Members defined using `val` or `def` can't be assigned to. |
| 73 | + | If you need to change the value of x, use `var` instead: |
| 74 | + | var x = ... |
| 75 | + | However, it's more common to initialize a variable just once |
| 76 | + | with a complex expression or even a block with many statements: |
| 77 | + | val x = if (condition) 1 else -1 |
| 78 | + -------------------------------------------------------------------------------------------------------------------- |
| 79 | +-- [E052] Type Error: tests/neg/i22671.explain.scala:32:6 -------------------------------------------------------------- |
| 80 | +32 | t.t = t // error |
| 81 | + | ^^^^^^^ |
| 82 | + | Assignment to method t |
| 83 | + |-------------------------------------------------------------------------------------------------------------------- |
| 84 | + | Explanation (enabled by `-explain`) |
| 85 | + |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| 86 | + | Members defined using `val` or `def` can't be assigned to. |
| 87 | + | If you need to change the value of t, use `var` instead: |
| 88 | + | var t = ... |
| 89 | + | However, it's more common to initialize a variable just once |
| 90 | + | with a complex expression or even a block with many statements: |
| 91 | + | val t = if (condition) 1 else -1 |
| 92 | + | Also, assignment syntax can be used if there is a corresponding setter: |
| 93 | + | def t_=(x: Int): Unit = _v = x |
| 94 | + -------------------------------------------------------------------------------------------------------------------- |
0 commit comments