mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 18:23:49 +00:00
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() {}
|