mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-12 23:13:15 +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() {}
|