]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-49934-errors.rs
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-49934-errors.rs
1 fn foo<#[derive(Debug)] T>() { //~ ERROR expected non-macro attribute, found attribute macro
2     match 0 {
3         #[derive(Debug)] //~ ERROR expected non-macro attribute, found attribute macro
4         _ => (),
5     }
6 }
7
8 fn main() {}