blob: d9e08102ab6a66b1e1b914a251ed3b17388b2d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0275]: overflow evaluating the requirement `Foo: std::marker::Sync`
--> $DIR/recursive-requirements.rs:26:12
|
LL | let _: AssertSync<Foo> = unimplemented!(); //~ ERROR E0275
| ^^^^^^^^^^^^^^^
|
= help: consider adding a `#![recursion_limit="128"]` attribute to your crate
= note: required because it appears within the type `std::marker::PhantomData<Foo>`
= note: required because it appears within the type `Bar`
= note: required because it appears within the type `std::marker::PhantomData<Bar>`
= note: required because it appears within the type `Foo`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0275`.
|