We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f77f02 commit f87ddacCopy full SHA for f87ddac
src/tools/jsondoclint/src/validator.rs
@@ -262,6 +262,7 @@ impl<'a> Validator<'a> {
262
Type::DynTrait(dyn_trait) => self.check_dyn_trait(dyn_trait),
263
Type::Generic(_) => {}
264
Type::Primitive(_) => {}
265
+ Type::Pat { type_, pat: _ } => self.check_type(type_),
266
Type::FunctionPointer(fp) => self.check_function_pointer(&**fp),
267
Type::Tuple(tys) => tys.iter().for_each(|ty| self.check_type(ty)),
268
Type::Slice(inner) => self.check_type(&**inner),
0 commit comments