|
| 1 | +-- Deprecation Warning: tests/warn/i19002.scala:5:20 ------------------------------------------------------------------- |
| 2 | +5 |class TBar1 extends TFoo // warn |
| 3 | + | ^^^^ |
| 4 | + | inheritance from trait TFoo is deprecated (since: FooLib 12.0): this class will be made final |
| 5 | +-- Deprecation Warning: tests/warn/i19002.scala:6:20 ------------------------------------------------------------------- |
| 6 | +6 |trait TBar2 extends TFoo // warn |
| 7 | + | ^^^^ |
| 8 | + | inheritance from trait TFoo is deprecated (since: FooLib 12.0): this class will be made final |
| 9 | +-- Deprecation Warning: tests/warn/i19002.scala:11:20 ------------------------------------------------------------------ |
| 10 | +11 |class CBar1 extends CFoo // warn |
| 11 | + | ^^^^ |
| 12 | + | inheritance from class CFoo is deprecated (since: FooLib 11.0): this class will be made final |
| 13 | +-- Deprecation Warning: tests/warn/i19002.scala:12:20 ------------------------------------------------------------------ |
| 14 | +12 |trait CBar2 extends CFoo // warn |
| 15 | + | ^^^^ |
| 16 | + | inheritance from class CFoo is deprecated (since: FooLib 11.0): this class will be made final |
| 17 | +-- Deprecation Warning: tests/warn/i19002.scala:17:20 ------------------------------------------------------------------ |
| 18 | +17 |class ABar1 extends AFoo // warn |
| 19 | + | ^^^^ |
| 20 | + | inheritance from class AFoo is deprecated (since: FooLib 10.0): this class will be made final |
| 21 | +-- Deprecation Warning: tests/warn/i19002.scala:18:20 ------------------------------------------------------------------ |
| 22 | +18 |trait ABar2 extends AFoo // warn |
| 23 | + | ^^^^ |
| 24 | + | inheritance from class AFoo is deprecated (since: FooLib 10.0): this class will be made final |
| 25 | +-- Deprecation Warning: tests/warn/i19002.scala:7:16 ------------------------------------------------------------------- |
| 26 | +7 |def TBar3 = new TFoo {} // warn |
| 27 | + | ^^^^ |
| 28 | + | inheritance from trait TFoo is deprecated (since: FooLib 12.0): this class will be made final |
| 29 | +-- Deprecation Warning: tests/warn/i19002.scala:13:16 ------------------------------------------------------------------ |
| 30 | +13 |def CBar3 = new CFoo {} // warn |
| 31 | + | ^^^^ |
| 32 | + | inheritance from class CFoo is deprecated (since: FooLib 11.0): this class will be made final |
| 33 | +-- Deprecation Warning: tests/warn/i19002.scala:19:16 ------------------------------------------------------------------ |
| 34 | +19 |def ABar3 = new AFoo {} // warn |
| 35 | + | ^^^^ |
| 36 | + | inheritance from class AFoo is deprecated (since: FooLib 10.0): this class will be made final |
0 commit comments