]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/derive-same-struct.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[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 }