From 71b97d27ca8c5413a238fc64f78058dcb5d72f03 Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Thu, 27 Nov 2025 12:17:04 +0200 Subject: [PATCH] make run-make tests use 2024 edition by default --- src/tools/compiletest/src/runtest/run_make.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/compiletest/src/runtest/run_make.rs b/src/tools/compiletest/src/runtest/run_make.rs index 738f504d5c1cf..b201710e32fd3 100644 --- a/src/tools/compiletest/src/runtest/run_make.rs +++ b/src/tools/compiletest/src/runtest/run_make.rs @@ -125,7 +125,7 @@ impl TestCx<'_> { // `extern run_make_support;`. .arg("--extern") .arg(format!("run_make_support={}", &support_lib_path)) - .arg("--edition=2021") + .arg("--edition=2024") .arg(&self.testpaths.file.join("rmake.rs")) .arg("-Cprefer-dynamic");