about summary refs log tree commit diff
path: root/src/tools/rustfmt/tests/source
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2023-12-10 09:34:13 -0800
committerEric Huss <eric@huss.org>2023-12-10 13:03:28 -0800
commitf481596ee4e761182f20eaf1b67d4431cd2d5556 (patch)
treefc0ae7b828e7036216820f6426879bef446cc7b0 /src/tools/rustfmt/tests/source
parent7e452c123c5acea813130a9519b34f83795cb856 (diff)
downloadrust-f481596ee4e761182f20eaf1b67d4431cd2d5556.tar.gz
rust-f481596ee4e761182f20eaf1b67d4431cd2d5556.zip
Remove edition umbrella features.
Diffstat (limited to 'src/tools/rustfmt/tests/source')
-rw-r--r--src/tools/rustfmt/tests/source/issue-2927-2.rs2
-rw-r--r--src/tools/rustfmt/tests/source/issue-2927.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/rustfmt/tests/source/issue-2927-2.rs b/src/tools/rustfmt/tests/source/issue-2927-2.rs
index d87761fdc9c..07afef38cf5 100644
--- a/src/tools/rustfmt/tests/source/issue-2927-2.rs
+++ b/src/tools/rustfmt/tests/source/issue-2927-2.rs
@@ -1,5 +1,5 @@
 // rustfmt-edition: 2015
-#![feature(rust_2018_preview, uniform_paths)]
+#![feature(uniform_paths)]
 use futures::prelude::*;
 use http_03::cli::Cli;
 use hyper::{service::service_fn_ok, Body, Response, Server};
diff --git a/src/tools/rustfmt/tests/source/issue-2927.rs b/src/tools/rustfmt/tests/source/issue-2927.rs
index a7df32084f3..c7ec7bb0855 100644
--- a/src/tools/rustfmt/tests/source/issue-2927.rs
+++ b/src/tools/rustfmt/tests/source/issue-2927.rs
@@ -1,5 +1,5 @@
 // rustfmt-edition: 2018
-#![feature(rust_2018_preview, uniform_paths)]
+#![feature(uniform_paths)]
 use futures::prelude::*;
 use http_03::cli::Cli;
 use hyper::{service::service_fn_ok, Body, Response, Server};