about summary refs log tree commit diff
path: root/tests/ui/inference/erase-type-params-in-label.stderr
blob: 1ec8a33eb820531ef41a0eaf14d9b5dc854ddd80 (plain)
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<_, &_, 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<_, &_, Z> = bar(1, "");
   |            +++++++++++++++

error: aborting due to 2 previous errors

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