Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
traits
/
const-traits
/
attr-misuse.rs
blob: 70dfcbf47d289132d65e6a07c333860cbf45a4a3 [
file
] [
log
] [
blame
]
#![
feature
(
const_trait_impl
)]
#[
const_trait
]
trait
A
{
#[
const_trait
]
//~ ERROR attribute cannot be used on
fn
foo
(
self
);
}
#[
const_trait
]
//~ ERROR attribute cannot be used on
fn
main
()
{}