mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-04 03:07:25 +00:00
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() {}
|