mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 09:36:40 +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() {}
|