first pass at default values for const generics
- Adds optional default values to const generic parameters in the AST and HIR - Parses these optional default values - Adds a `const_generics_defaults` feature gate
This commit is contained in:
@@ -1343,9 +1343,12 @@ impl<'tcx> Visitor<'tcx> for DumpVisitor<'tcx> {
|
||||
self.visit_ty(ty);
|
||||
}
|
||||
}
|
||||
hir::GenericParamKind::Const { ref ty } => {
|
||||
hir::GenericParamKind::Const { ref ty, ref default } => {
|
||||
self.process_bounds(param.bounds);
|
||||
self.visit_ty(ty);
|
||||
if let Some(default) = default {
|
||||
self.visit_anon_const(default);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user