mirror of https://github.com/rust-lang/rust
14 lines
449 B
Plaintext
14 lines
449 B
Plaintext
error: an inner attribute is not permitted in this context
|
|
--> $DIR/inner-attr.rs:6:16
|
|
|
|
|
LL | reuse a as b { #![rustc_dummy] self }
|
|
| ^^^^^^^^^^^^^^^
|
|
LL |
|
|
LL | fn main() {}
|
|
| ------------ the inner attribute doesn't annotate this function
|
|
|
|
|
= note: inner attributes, like `#![no_std]`, annotate the item enclosing them, and are usually found at the beginning of source files
|
|
|
|
error: aborting due to 1 previous error
|
|
|