From 0b5a4447bf5baae83218d39e06725786959a4fae Mon Sep 17 00:00:00 2001 From: Chris Denton Date: Tue, 16 Apr 2024 12:51:57 +0000 Subject: [PATCH] Stabilize `std::path::absolute` --- src/lib.rs | 1 - tests/pass/shims/path.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index e1c0da9118..44727e01ea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,6 @@ #![feature(let_chains)] #![feature(lint_reasons)] #![feature(trait_upcasting)] -#![feature(absolute_path)] // Configure clippy and other lints #![allow( clippy::collapsible_else_if, diff --git a/tests/pass/shims/path.rs b/tests/pass/shims/path.rs index 9fc6e7faef..cadbeb476b 100644 --- a/tests/pass/shims/path.rs +++ b/tests/pass/shims/path.rs @@ -1,5 +1,4 @@ //@compile-flags: -Zmiri-disable-isolation -#![feature(absolute_path)] use std::path::{absolute, Path}; #[track_caller]