We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following trait does not emit any warnings, although it should warn that the #[inline] hint is ignored on function prototypes.
#[inline]
trait Trait { #[inline] fn function(); }
Likewise for extern functions. E.g. should warn on
extern { #[inline] fn function(); }