]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2565-param-attrs/param-attrs-2018.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[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() {}