1 use darling::FromMeta;
2 
3 struct NotImplFm;
4 
5 #[derive(FromMeta)]
6 struct OuterFm {
7     inner: NotImplFm,
8 }
9 
10 #[derive(darling::FromDeriveInput)]
11 #[darling(attributes(hello))]
12 struct OuterFdi {
13     inner: NotImplFm,
14 }
15 
main()16 fn main() {}
17