summaryrefslogtreecommitdiffstats
path: root/tests/ui/inference/erase-type-params-in-label.stderr
blob: 9be18286480113cb04682887824884706c221faf (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, W, Z>`
  --> $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, Z>`
  --> $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`.