mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
176 B
Rust
16 lines
176 B
Rust
// aux-build:derive-b.rs
|
|
|
|
#![allow(warnings)]
|
|
|
|
#[macro_use]
|
|
extern crate derive_b;
|
|
|
|
#[derive(B)]
|
|
struct A {
|
|
a: &u64
|
|
//~^ ERROR: missing lifetime specifier
|
|
}
|
|
|
|
fn main() {
|
|
}
|