rustc/tests/ui/delegation/inner-attr.rs
2024-07-31 08:40:13 +02:00

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