2025-03-05 04:46:14 +00:00
|
|
|
#![no_std]
|
|
|
|
|
|
2025-06-20 02:48:15 +00:00
|
|
|
//@ is "$.index[?(@.name=='MyEnum')].attrs" '["non_exhaustive"]'
|
2025-03-05 04:46:14 +00:00
|
|
|
#[non_exhaustive]
|
|
|
|
|
pub enum MyEnum {
|
|
|
|
|
First,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub enum NonExhaustiveVariant {
|
2025-06-20 02:48:15 +00:00
|
|
|
//@ is "$.index[?(@.name=='Variant')].attrs" '["non_exhaustive"]'
|
2025-03-05 04:46:14 +00:00
|
|
|
#[non_exhaustive]
|
|
|
|
|
Variant(i64),
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-20 02:48:15 +00:00
|
|
|
//@ is "$.index[?(@.name=='MyStruct')].attrs" '["non_exhaustive"]'
|
2025-03-05 04:46:14 +00:00
|
|
|
#[non_exhaustive]
|
|
|
|
|
pub struct MyStruct {
|
|
|
|
|
pub x: i64,
|
|
|
|
|
}
|