]> git.proxmox.com Git - rustc.git/blob - tests/ui/issues/issue-49934-errors.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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() {}