diff options
| author | Rémy Rakic <remy.rakic+github@gmail.com> | 2020-12-31 02:50:23 +0100 |
|---|---|---|
| committer | Rémy Rakic <remy.rakic+github@gmail.com> | 2021-01-01 11:01:01 +0100 |
| commit | 1fc3c4c16dde2a6cb4f565435d131b8c57bc1295 (patch) | |
| tree | 231d41c7b6596fccb14c23934f95d3caba12e7ee /compiler/rustc_passes/src | |
| parent | 907ba75eb0b063c1da72703642e5710b91868dc8 (diff) | |
| download | rust-1fc3c4c16dde2a6cb4f565435d131b8c57bc1295.tar.gz rust-1fc3c4c16dde2a6cb4f565435d131b8c57bc1295.zip | |
adjust const generics defaults FIXMEs to the new feature gate
Diffstat (limited to 'compiler/rustc_passes/src')
| -rw-r--r-- | compiler/rustc_passes/src/stability.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_passes/src/stability.rs b/compiler/rustc_passes/src/stability.rs index 3c2462aab26..def2a501cf4 100644 --- a/compiler/rustc_passes/src/stability.rs +++ b/compiler/rustc_passes/src/stability.rs @@ -443,7 +443,7 @@ impl<'a, 'tcx> Visitor<'tcx> for Annotator<'a, 'tcx> { fn visit_generic_param(&mut self, p: &'tcx hir::GenericParam<'tcx>) { let kind = match &p.kind { - // FIXME(const_generics:defaults) + // FIXME(const_generics_defaults) hir::GenericParamKind::Type { default, .. } if default.is_some() => { AnnotationKind::Container } |
