blob: fdbd25070f7f875db68a86822e8c4729d9e86ada (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
error[E0535]: invalid argument
--> $DIR/invalid-inline.rs:3:10
|
LL | #[inline(please_no)] //~ ERROR invalid argument
| ^^^^^^^^^
error[E0534]: expected one argument
--> $DIR/invalid-inline.rs:7:1
|
LL | #[inline(please,no)] //~ ERROR expected one argument
| ^^^^^^^^^^^^^^^^^^^^
error[E0534]: expected one argument
--> $DIR/invalid-inline.rs:11:1
|
LL | #[inline()] //~ ERROR expected one argument
| ^^^^^^^^^^^
error: aborting due to 3 previous errors
Some errors occurred: E0534, E0535.
For more information about an error, try `rustc --explain E0534`.
|