]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/derive-same-struct.rs
Merge commit 'e228f0c16ea8c34794a6285bf57aab627c26b147' into libgccjit-codegen
[rust.git] / src / test / ui / proc-macro / derive-same-struct.rs
1 // run-pass
2
3 #![allow(path_statements)]
4 #![allow(dead_code)]
5 // aux-build:derive-same-struct.rs
6
7 #[macro_use]
8 extern crate derive_same_struct;
9
10 #[derive(AToB)]
11 struct A;
12
13 fn main() {
14     C;
15 }