We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b806a commit 20b140dCopy full SHA for 20b140d
src/lib.rs
@@ -699,7 +699,8 @@ pub fn transitions(input: proc_macro::TokenStream) -> syn::export::TokenStream {
699
700
let mut type_arguments = HashSet::new();
701
for t in transitions.transitions.iter() {
702
- type_arguments.extend(type_args(&t.message).drain());
+ let mut args = type_args(&t.message);
703
+ type_arguments.extend(args.drain());
704
}
705
706
let type_arguments = reorder_type_arguments(type_arguments);
0 commit comments