diff options
| author | kadmin <julianknodt@gmail.com> | 2021-05-06 15:33:44 +0000 |
|---|---|---|
| committer | kadmin <julianknodt@gmail.com> | 2021-07-26 21:15:18 +0000 |
| commit | 8759f00c73641d44b3ab7a2290e3c58168d3e30f (patch) | |
| tree | b2d4cdbbaa0b84be96c03e068d0f1fa6539d4ec7 /compiler/rustc_feature/src | |
| parent | 3605675bb1b4f1fb65f80585ded2b62aea15bf2c (diff) | |
| download | rust-8759f00c73641d44b3ab7a2290e3c58168d3e30f.tar.gz rust-8759f00c73641d44b3ab7a2290e3c58168d3e30f.zip | |
Actually infer args in visitors
Diffstat (limited to 'compiler/rustc_feature/src')
| -rw-r--r-- | compiler/rustc_feature/src/active.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs index a3e40daf6bf..46bf49d640f 100644 --- a/compiler/rustc_feature/src/active.rs +++ b/compiler/rustc_feature/src/active.rs @@ -684,6 +684,9 @@ declare_features! ( /// Allows `cfg(target_abi = "...")`. (active, cfg_target_abi, "1.55.0", Some(80970), None), + /// Infer generic args for both consts and types. + (active, generic_arg_infer, "1.55.0", Some(85077), None), + // ------------------------------------------------------------------------- // feature-group-end: actual feature gates // ------------------------------------------------------------------------- |
