mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
9 lines
90 B
Rust
9 lines
90 B
Rust
#![no_std]
|
|
#![crate_type = "lib"]
|
|
|
|
#[macro_use]
|
|
extern crate foo;
|
|
|
|
#[derive(A)]
|
|
struct A;
|