about summary refs log tree commit diff
path: root/tests/ui/lint/lint-missing-doc.rs
diff options
context:
space:
mode:
authorLukas Wirth <lukas.wirth@ferrous-systems.com>2025-06-03 10:03:42 +0200
committerLukas Wirth <lukas.wirth@ferrous-systems.com>2025-06-03 13:35:31 +0200
commiteae7fe1bdb5ca2fa3c37c84c5e93d5fb3cbeab8d (patch)
tree49a56410279d75fe97d74400d6a7f409f281a6f9 /tests/ui/lint/lint-missing-doc.rs
parentb17dba45186c454576d0fc8fb93ecc65eb1a763a (diff)
downloadrust-eae7fe1bdb5ca2fa3c37c84c5e93d5fb3cbeab8d.tar.gz
rust-eae7fe1bdb5ca2fa3c37c84c5e93d5fb3cbeab8d.zip
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
Diffstat (limited to 'tests/ui/lint/lint-missing-doc.rs')
-rw-r--r--tests/ui/lint/lint-missing-doc.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ui/lint/lint-missing-doc.rs b/tests/ui/lint/lint-missing-doc.rs
index 0b7c99e5012..b8655994fc2 100644
--- a/tests/ui/lint/lint-missing-doc.rs
+++ b/tests/ui/lint/lint-missing-doc.rs
@@ -184,10 +184,10 @@ mod internal_impl {
 }
 /// dox
 pub mod public_interface {
-    pub use internal_impl::documented as foo;
-    pub use internal_impl::undocumented1 as bar;
-    pub use internal_impl::{documented, undocumented2};
-    pub use internal_impl::globbed::*;
+    pub use crate::internal_impl::documented as foo;
+    pub use crate::internal_impl::undocumented1 as bar;
+    pub use crate::internal_impl::{documented, undocumented2};
+    pub use crate::internal_impl::globbed::*;
 }
 
 extern "C" {