mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-10 17:07:36 +00:00
12 lines
253 B
Rust
12 lines
253 B
Rust
![]() |
#![feature(fn_delegation)]
|
||
|
#![allow(incomplete_features)]
|
||
|
|
||
|
struct S;
|
||
|
|
||
|
impl S {
|
||
|
reuse <u8>::*; //~ ERROR qualified path without a trait in glob delegation
|
||
|
reuse <()>::*; //~ ERROR qualified path without a trait in glob delegation
|
||
|
}
|
||
|
|
||
|
fn main() {}
|