1 2 3 4 5
/// Combines 2 errors together. pub fn combine(mut err: syn::Error, other: syn::Error) -> syn::Error { err.combine(other); err }