rust/tests/ui/delegation/ice-issue-124347.rs
2024-06-10 21:27:25 +03:00

13 lines
244 B
Rust

#![feature(fn_delegation)]
#![allow(incomplete_features)]
trait Trait {
reuse Trait::foo { &self.0 }
//~^ ERROR recursive delegation is not supported yet
}
reuse foo;
//~^ ERROR recursive delegation is not supported yet
fn main() {}