]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass-fulldeps/issue-40663.rs
Auto merge of #61735 - eddyb:must-use-life, r=oli-obk
[rust.git] / src / test / run-pass-fulldeps / issue-40663.rs
1 #![allow(dead_code)]
2 // aux-build:custom-derive-plugin.rs
3 // ignore-stage1
4
5 #![feature(plugin)]
6 #![plugin(custom_derive_plugin)]
7
8 #[derive_Nothing]
9 #[derive_Nothing]
10 #[derive_Nothing]
11 struct S;
12
13 fn main() {}