blob: e1bf2cca1c9635b5303b19a03a0b01c98abe5d05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
error: an inner attribute is not permitted following an outer attribute
--> $DIR/inner-attr.rs:3:1
|
LL | #[feature(lang_items)]
| ---------------------- previous outer attribute
LL |
LL | #![recursion_limit="100"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^ not permitted following an outer attribute
|
= note: inner attributes, like `#![no_std]`, annotate the item enclosing them, and are usually found at the beginning of source files. Outer attributes, like `#[test]`, annotate the item following them.
error: aborting due to previous error
|