Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
rfc-2632-const-trait-impl
/
const-impl-requires-const-trait.rs
blob: 2b4963991dbefacd4a08c3e1f9baba36831cca35 [
file
] [
log
] [
blame
]
#![
feature
(
const_trait_impl
)]
pub
trait
A
{}
//~^ HELP: mark `A` as const
impl
const
A
for
()
{}
//~^ ERROR: const `impl` for trait `A` which is not marked with `#[const_trait]`
fn
main
()
{}