about summary refs log tree commit diff
path: root/compiler/rustc_expand/src/mbe.rs
diff options
context:
space:
mode:
authorNilstrieb <48135649+Nilstrieb@users.noreply.github.com>2022-11-20 13:06:44 +0100
committerNilstrieb <48135649+Nilstrieb@users.noreply.github.com>2022-11-20 13:06:44 +0100
commita1e5fea13610ba651b6eec034b85377ead87eb7c (patch)
treeb490a3d8bba5391f6ea790aba0688f1f75085980 /compiler/rustc_expand/src/mbe.rs
parente07425d55b77fde99af2092a92109a0da0860692 (diff)
downloadrust-a1e5fea13610ba651b6eec034b85377ead87eb7c.tar.gz
rust-a1e5fea13610ba651b6eec034b85377ead87eb7c.zip
Move macro_rules diagnostics to diagnostics module
Diffstat (limited to 'compiler/rustc_expand/src/mbe.rs')
-rw-r--r--compiler/rustc_expand/src/mbe.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_expand/src/mbe.rs b/compiler/rustc_expand/src/mbe.rs
index 63bafd7b046..a43b2a00188 100644
--- a/compiler/rustc_expand/src/mbe.rs
+++ b/compiler/rustc_expand/src/mbe.rs
@@ -3,6 +3,7 @@
 //! why we call this module `mbe`. For external documentation, prefer the
 //! official terminology: "declarative macros".
 
+pub(crate) mod diagnostics;
 pub(crate) mod macro_check;
 pub(crate) mod macro_parser;
 pub(crate) mod macro_rules;