about summary refs log tree commit diff
path: root/tests/ui/proc-macro/derive-helper-vs-legacy.rs
blob: 83917a2fbf7098be362ae9baa21a9e8f2df930bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ check-pass
//@ proc-macro: test-macros.rs

#[macro_use]
extern crate test_macros;

#[derive(Empty)]
#[empty_helper] // OK, this is both derive helper and legacy derive helper
#[derive(Empty)]
struct S;

fn main() {}