mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
4bb7bf64e0
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
10 lines
167 B
Rust
10 lines
167 B
Rust
//! Test that #[inline] attribute cannot be applied to enum variants
|
|
|
|
enum Foo {
|
|
#[inline]
|
|
//~^ ERROR attribute cannot be used on
|
|
Variant,
|
|
}
|
|
|
|
fn main() {}
|