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() {}
|