mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
167 B
Rust
16 lines
167 B
Rust
// run-pass
|
|
|
|
#![allow(dead_code)]
|
|
// aux-build:derive-two-attrs.rs
|
|
|
|
extern crate derive_two_attrs as foo;
|
|
|
|
use foo::A;
|
|
|
|
#[derive(A)]
|
|
#[b]
|
|
#[b]
|
|
struct B;
|
|
|
|
fn main() {}
|