Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2632-const-trait-impl
/
attr-misuse.rs
blob: 01ac74feff74dfe25fe6a573319715e2f3cefbf2 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
const_trait_impl
)]
#[
const_trait
]
trait
A
{
#[
const_trait
]
//~ ERROR attribute should be applied
fn
foo
(
self
);
}
#[
const_trait
]
//~ ERROR attribute should be applied
fn
main
()
{}