mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
9 lines
184 B
Rust
9 lines
184 B
Rust
#![feature(fn_delegation)]
|
|
#![allow(incomplete_features)]
|
|
|
|
fn a() {}
|
|
|
|
reuse a as b { #![rustc_dummy] self } //~ ERROR an inner attribute is not permitted in this context
|
|
|
|
fn main() {}
|