mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
14 lines
340 B
Rust
14 lines
340 B
Rust
#![feature(fn_delegation)]
|
|
#![allow(incomplete_features)]
|
|
|
|
// FIXME(fn_delegation): `recursive delegation` error should be emitted here
|
|
trait Trait {
|
|
reuse Trait::foo { &self.0 }
|
|
//~^ ERROR cycle detected when computing generics of `Trait::foo`
|
|
}
|
|
|
|
reuse foo;
|
|
//~^ ERROR cycle detected when computing generics of `foo`
|
|
|
|
fn main() {}
|