File: generic_underconstrained2.stderr

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 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; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (77 lines) | stat: -rw-r--r-- 3,190 bytes parent folder | download | duplicates (2)
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` with trait `Debug`
   |
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` with trait `Debug`
   |
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` with trait `Debug`
   |
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` with trait `Debug`
   |
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`.