diff options
| author | Michael Goulet <michael@errs.io> | 2023-02-17 20:22:12 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2023-02-18 02:42:43 +0000 |
| commit | fded2e95abac4bffcd4dedfff93a34520aa91be2 (patch) | |
| tree | 62346b1069a3d739eaff9f275f008993b3a99d3b /tests/ui/conditional-compilation | |
| parent | f722b24eb9ea35a7cc187a1cb5c50d4d324f5855 (diff) | |
| download | rust-fded2e95abac4bffcd4dedfff93a34520aa91be2.tar.gz rust-fded2e95abac4bffcd4dedfff93a34520aa91be2.zip | |
Adjust tracking issue for non_lifetime_binders
Diffstat (limited to 'tests/ui/conditional-compilation')
| -rw-r--r-- | tests/ui/conditional-compilation/cfg-generic-params.stderr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/conditional-compilation/cfg-generic-params.stderr b/tests/ui/conditional-compilation/cfg-generic-params.stderr index 69b0f741156..f733c09c22e 100644 --- a/tests/ui/conditional-compilation/cfg-generic-params.stderr +++ b/tests/ui/conditional-compilation/cfg-generic-params.stderr @@ -34,7 +34,7 @@ error[E0658]: only lifetime parameters can be used in this context LL | type FnBad = for<#[cfg(no)] 'a, #[cfg(yes)] T> fn(); | ^ | - = note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information + = note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information = help: add `#![feature(non_lifetime_binders)]` to the crate attributes to enable error[E0658]: only lifetime parameters can be used in this context @@ -43,7 +43,7 @@ error[E0658]: only lifetime parameters can be used in this context LL | type PolyBad = dyn for<#[cfg(no)] 'a, #[cfg(yes)] T> Copy; | ^ | - = note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information + = note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information = help: add `#![feature(non_lifetime_binders)]` to the crate attributes to enable error[E0658]: only lifetime parameters can be used in this context @@ -52,7 +52,7 @@ error[E0658]: only lifetime parameters can be used in this context LL | struct WhereBad where for<#[cfg(no)] 'a, #[cfg(yes)] T> u8: Copy; | ^ | - = note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information + = note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information = help: add `#![feature(non_lifetime_binders)]` to the crate attributes to enable error: aborting due to 8 previous errors |
