summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/issue-105231.rs
blob: bb2b13664ba2644a7d1a42a846b3d2a413d5be43 (plain)
1
2
3
4
5
6
7
8
9
struct A<T>(B<T>);
//~^ ERROR recursive types `A` and `B` have infinite size
struct B<T>(A<A<T>>);
trait Foo {}
impl<T> Foo for T where T: Send {}
//~^ ERROR overflow evaluating the requirement `A<A<A<A<A<A<A<...>>>>>>>: Send`
impl Foo for B<u8> {}

fn main() {}