about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-08-13 07:03:47 +0200
committerGitHub <noreply@github.com>2025-08-13 07:03:47 +0200
commitff44871be5b5bd6027c4956eb6d4520e87974c1e (patch)
treebb8de6ddeb236d164e628162ba70e331e12f1921 /src
parent900e568026f63e0ba88e1db71c6347f628186cfc (diff)
parent4c4b8b23c6935e719ca01b614922024abb694656 (diff)
downloadrust-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.rs2
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;