mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
292 B
Rust
16 lines
292 B
Rust
//@ normalize-stderr-test: "long-type-\d+" -> "long-type-hash"
|
|
trait Next {
|
|
type Next: Next;
|
|
}
|
|
|
|
struct GetNext<T: Next> {
|
|
t: T,
|
|
}
|
|
|
|
impl<T: Next> Next for GetNext<T> {
|
|
type Next = <GetNext<T::Next> as Next>::Next;
|
|
//~^ ERROR overflow evaluating the requirement
|
|
}
|
|
|
|
fn main() {}
|