]> git.proxmox.com Git - rustc.git/blame - src/test/ui/proc-macro/derive-helper-vs-legacy.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / proc-macro / derive-helper-vs-legacy.rs
CommitLineData
6a06907d
XL
1// check-pass
2// aux-build:test-macros.rs
3
4#[macro_use]
5extern crate test_macros;
6
7#[derive(Empty)]
8#[empty_helper] // OK, this is both derive helper and legacy derive helper
9#[derive(Empty)]
10struct S;
11
12fn main() {}