blob: 6c996807d6ba82fb1693f5a0ff6b83a4a8a931e4 (
plain)
1
2
3
4
5
6
7
8
|
#![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() {}
|