about summary refs log tree commit diff
path: root/tests/ui/recursion
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-06-04 19:50:21 +0200
committerGitHub <noreply@github.com>2025-06-04 19:50:21 +0200
commitbe2d3821583147237c11bf4f5c2c17da9ff75610 (patch)
treec2b2e168617d18837fdf672d922f1d08d268d378 /tests/ui/recursion
parent9ec41bcf72dd30d72cef2c3ea7bb8616e41585ce (diff)
parenteae7fe1bdb5ca2fa3c37c84c5e93d5fb3cbeab8d (diff)
downloadrust-be2d3821583147237c11bf4f5c2c17da9ff75610.tar.gz
rust-be2d3821583147237c11bf4f5c2c17da9ff75610.zip
Rollup merge of #141960 - ferrocene:lw/2015-paths2, r=compiler-errors
Use non-2015 edition paths in tests that do not test for their resolution

This allows for testing these tests on editions other than 2015

Follow up to https://github.com/rust-lang/rust/pull/141888
Diffstat (limited to 'tests/ui/recursion')
-rw-r--r--tests/ui/recursion/auxiliary/recursive_reexports.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/recursion/auxiliary/recursive_reexports.rs b/tests/ui/recursion/auxiliary/recursive_reexports.rs
index f98fa71009f..47a79090f4d 100644
--- a/tests/ui/recursion/auxiliary/recursive_reexports.rs
+++ b/tests/ui/recursion/auxiliary/recursive_reexports.rs
@@ -1,3 +1,3 @@
 pub mod foo {
-    pub use foo;
+    pub use crate::foo;
 }