]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2565-param-attrs/param-attrs-2018.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / rfc-2565-param-attrs / param-attrs-2018.rs
1 // edition:2018
2
3 trait Trait2015 { fn foo(#[allow(C)] i32); }
4 //~^ ERROR expected one of `:`, `@`, or `|`, found `)`
5
6 fn main() {}