2020-11-14 05:47:14 -06:00
|
|
|
fn foo<#[derive(Debug)] T>() { //~ ERROR expected non-macro attribute, found attribute macro
|
2019-09-09 07:26:25 -05:00
|
|
|
match 0 {
|
2020-11-14 05:47:14 -06:00
|
|
|
#[derive(Debug)] //~ ERROR expected non-macro attribute, found attribute macro
|
2019-09-09 07:26:25 -05:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-14 05:47:14 -06:00
|
|
|
fn main() {}
|