mirror of https://github.com/rust-lang/rust
16 lines
424 B
Plaintext
16 lines
424 B
Plaintext
error[E0275]: overflow evaluating the requirement `(): A`
|
|
--> $DIR/mixed-cycles-1.rs:37:15
|
|
|
|
|
LL | impls_a::<()>();
|
|
| ^^
|
|
|
|
|
note: required by a bound in `impls_a`
|
|
--> $DIR/mixed-cycles-1.rs:34:15
|
|
|
|
|
LL | fn impls_a<T: A>() {}
|
|
| ^ required by this bound in `impls_a`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0275`.
|