about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/interpret/mod.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-05-02 18:47:36 +0200
committerRalf Jung <post@ralfj.de>2024-05-02 18:47:36 +0200
commitdba1849c22b6c10af98e720cfa6dd6868f029e4a (patch)
treee142d8aceee7410b2700126f136c55a8818ba03f /compiler/rustc_const_eval/src/interpret/mod.rs
parent9382ba4716073ad91094740932ca18e2f38ffc58 (diff)
downloadrust-dba1849c22b6c10af98e720cfa6dd6868f029e4a.tar.gz
rust-dba1849c22b6c10af98e720cfa6dd6868f029e4a.zip
interpret: hide some reexports in rustdoc
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret/mod.rs')
-rw-r--r--compiler/rustc_const_eval/src/interpret/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/mod.rs b/compiler/rustc_const_eval/src/interpret/mod.rs
index 7ede90ad13f..7d7b421f869 100644
--- a/compiler/rustc_const_eval/src/interpret/mod.rs
+++ b/compiler/rustc_const_eval/src/interpret/mod.rs
@@ -18,6 +18,7 @@ mod util;
 mod validity;
 mod visitor;
 
+#[doc(no_inline)]
 pub use rustc_middle::mir::interpret::*; // have all the `interpret` symbols in one place: here
 
 pub use self::eval_context::{format_interp_error, Frame, FrameInfo, InterpCx, StackPopCleanup};