summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-collapse_debuginfo.rs
blob: f73bf579f6d131fa0ec5642a862687f99fd54a93 (plain)
1
2
3
4
5
6
7
#[collapse_debuginfo]
//~^ ERROR the `#[collapse_debuginfo]` attribute is an experimental feature
macro_rules! foo {
    ($e:expr) => { $e }
}

fn main() {}