mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
c30b41012d
```rust reuse prefix::{a, b, c} ```
9 lines
145 B
Rust
9 lines
145 B
Rust
#![feature(fn_delegation)]
|
|
#![allow(incomplete_features)]
|
|
|
|
mod m {}
|
|
|
|
reuse m::{}; //~ ERROR empty list delegation is not supported
|
|
|
|
fn main() {}
|