]> git.proxmox.com Git - rustc.git/blob - src/test/run-make/rustc-macro-dep-files/bar.rs
Update unsuspicious file list
[rustc.git] / src / test / run-make / rustc-macro-dep-files / bar.rs
1 #![no_std]
2 #![crate_type = "lib"]
3
4 #[macro_use]
5 extern crate foo;
6
7 #[derive(A)]
8 struct A;