]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/issue-38237/foo.rs
add (currently ICEing) test
[rust.git] / tests / run-make-fulldeps / issue-38237 / foo.rs
1 #![crate_type = "proc-macro"]
2
3 extern crate proc_macro;
4
5 #[proc_macro_derive(A)]
6 pub fn derive(ts: proc_macro::TokenStream) -> proc_macro::TokenStream { ts }
7
8 #[derive(Debug)]
9 struct S;