]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/infinite-impl-trait-issue-38064.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / impl-trait / infinite-impl-trait-issue-38064.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test that attempts to construct infinite types via impl trait fail
12 // in a graceful way.
13 //
14 // Regression test for #38064.
15
16 // error-pattern:overflow evaluating the requirement `impl Quux`
17
18 trait Quux {}
19
20 fn foo() -> impl Quux {
21     struct Foo<T>(T);
22     impl<T> Quux for Foo<T> {}
23     Foo(bar())
24 }
25
26 fn bar() -> impl Quux {
27     struct Bar<T>(T);
28     impl<T> Quux for Bar<T> {}
29     Bar(foo())
30 }
31
32 // effectively:
33 //     struct Foo(Bar);
34 //     struct Bar(Foo);
35 // should produce an error about infinite size
36
37 fn main() { foo(); }