diff options
Diffstat (limited to 'tests/rustdoc/doc-proc-macro.rs')
-rw-r--r-- | tests/rustdoc/doc-proc-macro.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/rustdoc/doc-proc-macro.rs b/tests/rustdoc/doc-proc-macro.rs new file mode 100644 index 000000000..19172ffa4 --- /dev/null +++ b/tests/rustdoc/doc-proc-macro.rs @@ -0,0 +1,8 @@ +// Issue #52129: ICE when trying to document the `quote` proc-macro from proc_macro + +// As of this writing, we don't currently attempt to document proc-macros. However, we shouldn't +// crash when we try. + +extern crate proc_macro; + +pub use proc_macro::*; |