summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/generic_underconstrained2.stderr
blob: b3b9cbca96854c07810b59df937d7fe4d62d99a2 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
error[E0277]: `U` doesn't implement `Debug`
  --> $DIR/generic_underconstrained2.rs:8:33
   |
LL | fn underconstrained<U>(_: U) -> Underconstrained<U> {
   |                                 ^^^^^^^^^^^^^^^^^^^ `U` cannot be formatted using `{:?}` because it doesn't implement `Debug`
   |
note: required by a bound on the type alias `Underconstrained`
  --> $DIR/generic_underconstrained2.rs:5:26
   |
LL | type Underconstrained<T: std::fmt::Debug> = impl Send;
   |                          ^^^^^^^^^^^^^^^ required by this bound
help: consider restricting type parameter `U`
   |
LL | fn underconstrained<U: std::fmt::Debug>(_: U) -> Underconstrained<U> {
   |                      +++++++++++++++++

error[E0277]: `V` doesn't implement `Debug`
  --> $DIR/generic_underconstrained2.rs:17:43
   |
LL | fn underconstrained2<U, V>(_: U, _: V) -> Underconstrained2<V> {
   |                                           ^^^^^^^^^^^^^^^^^^^^ `V` cannot be formatted using `{:?}` because it doesn't implement `Debug`
   |
note: required by a bound on the type alias `Underconstrained2`
  --> $DIR/generic_underconstrained2.rs:14:27
   |
LL | type Underconstrained2<T: std::fmt::Debug> = impl Send;
   |                           ^^^^^^^^^^^^^^^ required by this bound
help: consider restricting type parameter `V`
   |
LL | fn underconstrained2<U, V: std::fmt::Debug>(_: U, _: V) -> Underconstrained2<V> {
   |                          +++++++++++++++++

error[E0277]: `U` doesn't implement `Debug`
  --> $DIR/generic_underconstrained2.rs:8:53
   |
LL |   fn underconstrained<U>(_: U) -> Underconstrained<U> {
   |  _____________________________________________________^
LL | |
LL | |
LL | |     5u32
LL | | }
   | |_^ `U` cannot be formatted using `{:?}` because it doesn't implement `Debug`
   |
note: required by a bound on the type alias `Underconstrained`
  --> $DIR/generic_underconstrained2.rs:5:26
   |
LL | type Underconstrained<T: std::fmt::Debug> = impl Send;
   |                          ^^^^^^^^^^^^^^^ required by this bound
help: consider restricting type parameter `U`
   |
LL | fn underconstrained<U: std::fmt::Debug>(_: U) -> Underconstrained<U> {
   |                      +++++++++++++++++

error[E0277]: `V` doesn't implement `Debug`
  --> $DIR/generic_underconstrained2.rs:17:64
   |
LL |   fn underconstrained2<U, V>(_: U, _: V) -> Underconstrained2<V> {
   |  ________________________________________________________________^
LL | |
LL | |
LL | |     5u32
LL | | }
   | |_^ `V` cannot be formatted using `{:?}` because it doesn't implement `Debug`
   |
note: required by a bound on the type alias `Underconstrained2`
  --> $DIR/generic_underconstrained2.rs:14:27
   |
LL | type Underconstrained2<T: std::fmt::Debug> = impl Send;
   |                           ^^^^^^^^^^^^^^^ required by this bound
help: consider restricting type parameter `V`
   |
LL | fn underconstrained2<U, V: std::fmt::Debug>(_: U, _: V) -> Underconstrained2<V> {
   |                          +++++++++++++++++

error: aborting due to 4 previous errors

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