@@ -7,7 +7,7 @@ In Scala 2, symbols inherited from a superclass shadow symbols defined in an out
7
7
Such references are ambiguous in Scala 3. To continue using the inherited symbol, write `this.x`.
8
8
Or use `-Wconf:msg=legacy-binding:s` to silence this warning.
9
9
Scala 3 migration messages are errors under -Xsource:3. Use -Wconf / @nowarn to filter them or add -Xmigration to demote them to warnings.
10
- Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=test1.Test.D.<local D>
10
+ Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=test1.Test.D
11
11
println(x) // error
12
12
^
13
13
t11921b.scala:15: error: reference to x is ambiguous;
@@ -16,7 +16,7 @@ In Scala 2, symbols inherited from a superclass shadow symbols defined in an out
16
16
Such references are ambiguous in Scala 3. To continue using the inherited symbol, write `this.x`.
17
17
Or use `-Wconf:msg=legacy-binding:s` to silence this warning.
18
18
Scala 3 migration messages are errors under -Xsource:3. Use -Wconf / @nowarn to filter them or add -Xmigration to demote them to warnings.
19
- Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=test1.Test.f.$anon.<local $anon>
19
+ Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=test1.Test.f
20
20
println(x) // error
21
21
^
22
22
t11921b.scala:26: error: reference to y is ambiguous;
@@ -25,7 +25,7 @@ In Scala 2, symbols inherited from a superclass shadow symbols defined in an out
25
25
Such references are ambiguous in Scala 3. To continue using the inherited symbol, write `this.y`.
26
26
Or use `-Wconf:msg=legacy-binding:s` to silence this warning.
27
27
Scala 3 migration messages are errors under -Xsource:3. Use -Wconf / @nowarn to filter them or add -Xmigration to demote them to warnings.
28
- Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=test2.c.$anon.<local $anon>
28
+ Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=test2.c
29
29
println(y) // error
30
30
^
31
31
t11921b.scala:38: error: reference to y is ambiguous;
@@ -34,7 +34,7 @@ In Scala 2, symbols inherited from a superclass shadow symbols defined in an out
34
34
Such references are ambiguous in Scala 3. To continue using the inherited symbol, write `E.this.y`.
35
35
Or use `-Wconf:msg=legacy-binding:s` to silence this warning.
36
36
Scala 3 migration messages are errors under -Xsource:3. Use -Wconf / @nowarn to filter them or add -Xmigration to demote them to warnings.
37
- Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=test3.c.E.F.<local F>
37
+ Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=test3.c.E.F
38
38
println(y) // error
39
39
^
40
40
t11921b.scala:65: error: reference to global is ambiguous;
@@ -43,7 +43,7 @@ In Scala 2, symbols inherited from a superclass shadow symbols defined in an out
43
43
Such references are ambiguous in Scala 3. To continue using the inherited symbol, write `this.global`.
44
44
Or use `-Wconf:msg=legacy-binding:s` to silence this warning.
45
45
Scala 3 migration messages are errors under -Xsource:3. Use -Wconf / @nowarn to filter them or add -Xmigration to demote them to warnings.
46
- Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=D.<local D>
46
+ Applicable -Wconf / @nowarn filters for this fatal warning: msg=<part of the message>, cat=scala3-migration, site=D
47
47
println(global) // error
48
48
^
49
49
t11921b.scala:75: error: reference to x is ambiguous;
0 commit comments