Files
cli/vendor/darling/tests/compile-fail/not_impl_from_meta.rs

17 lines
227 B
Rust

use darling::FromMeta;
struct NotImplFm;
#[derive(FromMeta)]
struct OuterFm {
inner: NotImplFm,
}
#[derive(darling::FromDeriveInput)]
#[darling(attributes(hello))]
struct OuterFdi {
inner: NotImplFm,
}
fn main() {}