The following trait does not emit any warnings, although it should warn that the `#[inline]` hint is ignored on function prototypes. ```rust trait Trait { #[inline] fn function(); } ``` Likewise for extern functions. E.g. should warn on ```rust extern { #[inline] fn function(); } ````