about summary refs log tree commit diff
path: root/tests/ui/attributes/inline-attribute-enum-variant-error.rs
blob: fd2cd49be16d284ad4351b81c117d64ff0ad7f7e (plain)
1
2
3
4
5
6
7
8
9
//! Test that #[inline] attribute cannot be applied to enum variants

enum Foo {
    #[inline]
    //~^ ERROR attribute cannot be used on
    Variant,
}

fn main() {}