blob: 62c0741b6697a484385e051eeda0afcc8af4ca21 [file] [log] [blame]
// aux-build:derive-bad.rs
#[macro_use]
extern crate derive_bad;
#[derive(
A
)]
//~^^ ERROR proc-macro derive produced unparseable tokens
//~| ERROR expected `:`, found `}`
struct A;
fn main() {}