]> git.proxmox.com Git - rustc.git/blob - src/test/ui/proc-macro/no-missing-docs.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / proc-macro / no-missing-docs.rs
1 //! Verify that the `decls` module implicitly added by the compiler does not cause `missing_docs`
2 //! warnings.
3
4 // build-pass (FIXME(62277): could be check-pass?)
5 // force-host
6 // no-prefer-dynamic
7
8 #![crate_type = "proc-macro"]
9 #![deny(missing_docs)]
10
11 extern crate proc_macro;
12 use proc_macro::*;
13
14 /// Foo1.
15 #[proc_macro]
16 pub fn foo1(input: TokenStream) -> TokenStream { input }