blob: 181c8592c547bce9e406c6dfab815471d3671dc3 [file] [log] [blame]
#![feature(custom_attribute)]
#[my_attr(a b c d)]
//~^ ERROR expected one of `(`, `)`, `,`, `::`, or `=`, found `b`
//~| ERROR expected one of `(`, `)`, `,`, `::`, or `=`, found `c`
//~| ERROR expected one of `(`, `)`, `,`, `::`, or `=`, found `d`
fn main() {}