|
14 | 14 | 13 | type MySeq2[ImClass] = Seq[D] // error
|
15 | 15 | | ^^^^^^^
|
16 | 16 | | Type parameter ImClass for type MySeq2 shadows the type defined by class ImClass in object importTry
|
17 |
| --- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:15:12 --------------------------------------------- |
18 |
| -15 | class Foo[T](t: T): // error class parameter shadows some other type |
| 17 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:16:24 --------------------------------------------- |
| 18 | +16 | type TypeLambda[A] = [ImTrait] =>> Map[ImTrait, B] // error |
| 19 | + | ^^^^^^^ |
| 20 | + | Type parameter ImTrait for type TypeLambda shadows the type defined by trait ImTrait in object importTry |
| 21 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:17:21 --------------------------------------------- |
| 22 | +17 | type PolyFun[A] = [ImTrait] => ImTrait => B // error |
| 23 | + | ^^^^^^^ |
| 24 | + | Type parameter ImTrait for type PolyFun shadows the type defined by trait ImTrait in object importTry |
| 25 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:23:12 --------------------------------------------- |
| 26 | +23 | class Foo[T](t: T): // error class parameter shadows some other type |
19 | 27 | | ^
|
20 | 28 | | Type parameter T for class Foo shadows the type defined by type T in class B
|
21 |
| --- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:19:15 --------------------------------------------- |
22 |
| -19 | def intType[List1](x: T) = x.toString() // error |
| 29 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:27:15 --------------------------------------------- |
| 30 | +27 | def intType[List1](x: T) = x.toString() // error |
23 | 31 | | ^^^^^
|
24 | 32 | | Type parameter List1 for method intType shadows an explicitly renamed type : List1
|
25 |
| --- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:23:12 --------------------------------------------- |
26 |
| -23 | class C[M[List[_]]] // error List not renamed here |
| 33 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:32:10 --------------------------------------------- |
| 34 | +32 | given [Int]: Ordering[Int]() // error |
| 35 | + | ^^^ |
| 36 | + | Type parameter Int for method given_Ordering_Int shadows the type defined by class Int in package scala |
| 37 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:34:12 --------------------------------------------- |
| 38 | +34 | class C[M[List[_]]] // error List not renamed here |
27 | 39 | | ^^^^^^^
|
28 | 40 | | Type parameter List for class C shadows the type defined by type List in package scala
|
29 |
| --- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:24:11 --------------------------------------------- |
30 |
| -24 | type E[M[Int[_]]] = Int // error |
| 41 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:35:11 --------------------------------------------- |
| 42 | +35 | type E[M[Int[_]]] = Int // error |
31 | 43 | | ^^^^^^
|
32 | 44 | | Type parameter Int for type E shadows the type defined by class Int in package scala
|
33 |
| --- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:26:14 --------------------------------------------- |
34 |
| -26 | def foo[N[M[List[_]]]] = // error |
| 45 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:37:14 --------------------------------------------- |
| 46 | +37 | def foo[N[M[List[_]]]] = // error |
35 | 47 | | ^^^^^^^
|
36 | 48 | | Type parameter List for method foo shadows the type defined by type List in package scala
|
37 |
| --- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:29:11 --------------------------------------------- |
38 |
| -29 | type Z[ImClassR] = Int // error |
| 49 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:40:11 --------------------------------------------- |
| 50 | +40 | type Z[ImClassR] = Int // error |
39 | 51 | | ^^^^^^^^
|
40 | 52 | | Type parameter ImClassR for type Z shadows an explicitly renamed type : ImClassR
|
41 |
| --- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:30:18 --------------------------------------------- |
42 |
| -30 | class InnerCl[ImClassR] // error |
| 53 | +-- Error: tests/neg-custom-args/fatal-warnings/i17613b/i17613b.scala:41:18 --------------------------------------------- |
| 54 | +41 | class InnerCl[ImClassR] // error |
43 | 55 | | ^^^^^^^^
|
44 | 56 | | Type parameter ImClassR for class InnerCl shadows an explicitly renamed type : ImClassR
|
0 commit comments