mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
16 lines
171 B
Rust
16 lines
171 B
Rust
//@ run-pass
|
|
|
|
#![allow(dead_code)]
|
|
//@ proc-macro: derive-two-attrs.rs
|
|
|
|
extern crate derive_two_attrs as foo;
|
|
|
|
use foo::A;
|
|
|
|
#[derive(A)]
|
|
#[b]
|
|
#[b]
|
|
struct B;
|
|
|
|
fn main() {}
|