]> git.lizzy.rs Git - rust.git/blob - src/test/ui/custom-derive/derive-in-mod.rs
Update src/libcore/mem.rs
[rust.git] / src / test / ui / custom-derive / derive-in-mod.rs
1 // compile-pass
2 // aux-build:plugin.rs
3
4 extern crate plugin;
5
6 mod inner {
7     use plugin::WithHelper;
8
9     #[derive(WithHelper)]
10     struct S;
11 }
12
13 fn main() {}