17 lines
560 B
Plaintext
17 lines
560 B
Plaintext
error[E0275]: overflow evaluating the requirement `(): A`
|
|
--> $DIR/mixed-cycles-2.rs:30:15
|
|
|
|
|
LL | impls_a::<()>();
|
|
| ^^
|
|
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`mixed_cycles_2`)
|
|
note: required by a bound in `impls_a`
|
|
--> $DIR/mixed-cycles-2.rs:27: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`.
|