]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/derive-two-attrs.rs
Rollup merge of #106816 - TimNN:rental-remap, r=oli-obj
[rust.git] / tests / ui / proc-macro / derive-two-attrs.rs
1 // run-pass
2
3 #![allow(dead_code)]
4 // aux-build:derive-two-attrs.rs
5
6 extern crate derive_two_attrs as foo;
7
8 use foo::A;
9
10 #[derive(A)]
11 #[b]
12 #[b]
13 struct B;
14
15 fn main() {}