rust/tests/ui/traits/issue-105231.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
320 B
Rust
Raw Normal View History

//~ ERROR overflow evaluating the requirement `A<A<A<A<A<A<A<...>>>>>>>: Send`
2023-06-02 01:22:57 +00:00
struct A<T>(B<T>);
//~^ ERROR recursive types `A` and `B` have infinite size
//~| ERROR `T` is never used
2023-06-02 01:22:57 +00:00
struct B<T>(A<A<T>>);
//~^ ERROR `T` is never used
2023-06-02 01:22:57 +00:00
trait Foo {}
impl<T> Foo for T where T: Send {}
impl Foo for B<u8> {}
fn main() {}