rust/tests/ui/delegation/empty-glob.rs
2024-06-14 19:27:51 +03:00

12 lines
179 B
Rust

#![feature(fn_delegation)]
#![allow(incomplete_features)]
trait Trait {}
struct S;
impl S {
reuse Trait::*; //~ ERROR empty glob delegation is not supported
}
fn main() {}