Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
proc-macro
/
item-error.rs
blob: 64c203e54807143e54cbd211a707c16277876587 [
file
] [
log
] [
blame
]
// 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
()
{
}