2025-06-12 18:29:22 +05:00
|
|
|
//! Test that #[inline] attribute cannot be applied to enum variants
|
|
|
|
|
|
2020-09-10 19:54:17 +01:00
|
|
|
enum Foo {
|
|
|
|
|
#[inline]
|
2025-08-09 20:41:01 +02:00
|
|
|
//~^ ERROR attribute cannot be used on
|
2020-09-10 19:54:17 +01:00
|
|
|
Variant,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|