File: erase-type-params-in-label.stderr

package info (click to toggle)
rustc 1.85.0%2Bdfsg2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 893,176 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; lisp: 29; perl: 29; ruby: 19; sql: 11
file content (37 lines) | stat: -rw-r--r-- 1,428 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
error[E0283]: type annotations needed for `Foo<i32, &str, _, _>`
  --> $DIR/erase-type-params-in-label.rs:2:9
   |
LL |     let foo = foo(1, "");
   |         ^^^   ---------- type must be known at this point
   |
   = note: cannot satisfy `_: Default`
note: required by a bound in `foo`
  --> $DIR/erase-type-params-in-label.rs:25:17
   |
LL | fn foo<T, K, W: Default, Z: Default>(t: T, k: K) -> Foo<T, K, W, Z> {
   |                 ^^^^^^^ required by this bound in `foo`
help: consider giving `foo` an explicit type, where the type for type parameter `W` is specified
   |
LL |     let foo: Foo<i32, &str, W, Z> = foo(1, "");
   |            ++++++++++++++++++++++

error[E0283]: type annotations needed for `Bar<i32, &str, _>`
  --> $DIR/erase-type-params-in-label.rs:5:9
   |
LL |     let bar = bar(1, "");
   |         ^^^   ---------- type must be known at this point
   |
   = note: cannot satisfy `_: Default`
note: required by a bound in `bar`
  --> $DIR/erase-type-params-in-label.rs:14:17
   |
LL | fn bar<T, K, Z: Default>(t: T, k: K) -> Bar<T, K, Z> {
   |                 ^^^^^^^ required by this bound in `bar`
help: consider giving `bar` an explicit type, where the type for type parameter `Z` is specified
   |
LL |     let bar: Bar<i32, &str, Z> = bar(1, "");
   |            +++++++++++++++++++

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0283`.