rust/tests/ui/attributes/attrs-on-params.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
299 B
Rust
Raw Normal View History

2021-02-09 21:17:10 +00:00
// This checks that incorrect params on function parameters are caught
fn function(#[inline] param: u32) {
//~^ ERROR attribute should be applied to function or closure
//~| ERROR allow, cfg, cfg_attr, deny, expect, forbid, and warn are the only allowed built-in attributes
2021-02-09 21:17:10 +00:00
}
fn main() {}