diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-08-13 07:03:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-13 07:03:47 +0200 |
| commit | ff44871be5b5bd6027c4956eb6d4520e87974c1e (patch) | |
| tree | bb8de6ddeb236d164e628162ba70e331e12f1921 /src | |
| parent | 900e568026f63e0ba88e1db71c6347f628186cfc (diff) | |
| parent | 4c4b8b23c6935e719ca01b614922024abb694656 (diff) | |
| download | rust-ff44871be5b5bd6027c4956eb6d4520e87974c1e.tar.gz rust-ff44871be5b5bd6027c4956eb6d4520e87974c1e.zip | |
Rollup merge of #144870 - Kivooeo:file_prefix-stabilize, r=tgross35
Stabilize `path_file_prefix` feature This stabilises `Path::file_prefix`, following the FCP in [tracking issue ](https://github.com/rust-lang/rust/issues/86319) (FCP ended almost a year ago, so if it's needed for proccess we could rerun it) Closes: https://github.com/rust-lang/rust/issues/86319
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/clippy/tests/missing-test-files.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/missing-test-files.rs b/src/tools/clippy/tests/missing-test-files.rs index 565dcd73f58..63f960c92fa 100644 --- a/src/tools/clippy/tests/missing-test-files.rs +++ b/src/tools/clippy/tests/missing-test-files.rs @@ -1,6 +1,6 @@ #![warn(rust_2018_idioms, unused_lifetimes)] #![allow(clippy::assertions_on_constants)] -#![feature(path_file_prefix)] +#![cfg_attr(bootstrap, feature(path_file_prefix))] use std::cmp::Ordering; use std::ffi::OsStr; |
