mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
590 B
Plaintext
18 lines
590 B
Plaintext
error: allow, cfg, cfg_attr, deny, expect, forbid, and warn are the only allowed built-in attributes in function parameters
|
|
--> $DIR/attrs-on-params.rs:3:13
|
|
|
|
|
LL | fn function(#[inline] param: u32) {
|
|
| ^^^^^^^^^
|
|
|
|
error[E0518]: attribute should be applied to function or closure
|
|
--> $DIR/attrs-on-params.rs:3:13
|
|
|
|
|
LL | fn function(#[inline] param: u32) {
|
|
| ^^^^^^^^^-----------
|
|
| |
|
|
| not a function or closure
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0518`.
|