blob: 49d1aeed60412d4f7fc998d191c60b5bd5486a53 [file] [log] [blame]
// This test checks that all expected errors occur when there are multiple invalid attributes
// on an item.
#[inline]
//~^ ERROR attribute cannot be used on
#[target_feature(enable = "sse2")]
//~^ ERROR attribute cannot be used on
const FOO: u8 = 0;
fn main() { }