summary refs log tree commit diff
path: root/src/test/rustdoc/inline_cross/auxiliary
diff options
context:
space:
mode:
authorQuietMisdreavus <grey@quietmisdreavus.net>2018-09-25 16:30:19 -0500
committerQuietMisdreavus <grey@quietmisdreavus.net>2018-09-25 16:30:19 -0500
commit8f69a82513d169b8ef57cd885194fd4f9b2d8b65 (patch)
tree05e5bac6eacef1d4284fed64c7f24ea5e81072ab /src/test/rustdoc/inline_cross/auxiliary
parentf05b744b083598f3a34d02ac55d27bb144d99e8a (diff)
downloadrust-8f69a82513d169b8ef57cd885194fd4f9b2d8b65.tar.gz
rust-8f69a82513d169b8ef57cd885194fd4f9b2d8b65.zip
add test for proc-macro re-export
Diffstat (limited to 'src/test/rustdoc/inline_cross/auxiliary')
-rw-r--r--src/test/rustdoc/inline_cross/auxiliary/proc_macro.rs37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/test/rustdoc/inline_cross/auxiliary/proc_macro.rs b/src/test/rustdoc/inline_cross/auxiliary/proc_macro.rs
new file mode 100644
index 00000000000..6aac070c45b
--- /dev/null
+++ b/src/test/rustdoc/inline_cross/auxiliary/proc_macro.rs
@@ -0,0 +1,37 @@
+// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// no-prefer-dynamic
+
+#![crate_type="proc-macro"]
+#![crate_name="some_macros"]
+
+extern crate proc_macro;
+
+use proc_macro::TokenStream;
+
+/// a proc-macro that swallows its input and does nothing.
+#[proc_macro]
+pub fn some_proc_macro(_input: TokenStream) -> TokenStream {
+    TokenStream::new()
+}
+
+/// a proc-macro attribute that passes its item through verbatim.
+#[proc_macro_attribute]
+pub fn some_proc_attr(_attr: TokenStream, item: TokenStream) -> TokenStream {
+    item
+}
+
+/// a derive attribute that adds nothing to its input.
+#[proc_macro_derive(SomeDerive)]
+pub fn some_derive(_item: TokenStream) -> TokenStream {
+    TokenStream::new()
+}
+