Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//! Test that #[inline] attribute cannot be applied to enum variants
enum Foo {
#[inline]
//~^ ERROR attribute should be applied
Variant,
}
fn main() {}