]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-49934-errors.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / issues / issue-49934-errors.rs
CommitLineData
6a06907d 1fn foo<#[derive(Debug)] T>() { //~ ERROR expected non-macro attribute, found attribute macro
e1599b0c 2 match 0 {
6a06907d 3 #[derive(Debug)] //~ ERROR expected non-macro attribute, found attribute macro
e1599b0c
XL
4 _ => (),
5 }
6}
7
6a06907d 8fn main() {}