Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2565-param-attrs
/
param-attrs-2018.rs
blob: af13a46564ec6c6db9bb6b37966604cc78ec6e23 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
trait
Trait2015
{
fn
foo
(#[
allow
(
C
)]
i32
);
}
//~^ ERROR expected one of `:`, `@`, or `|`, found `)`
fn
main
()
{}