pub static INLINE_NO_SANITIZE: &LintExpand description
The inline_no_sanitize lint detects incompatible use of
#[inline(always)] and #[sanitize(xyz = "off")].
§Example
#![feature(sanitize)]
#[inline(always)]
#[sanitize(address = "off")]
fn x() {}
fn main() {
x()
}{{produces}}
§Explanation
The use of the #[inline(always)] attribute prevents the
the #[sanitize(xyz = "off")] attribute from working.
Consider temporarily removing inline attribute.