Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2632-const-trait-impl
/
const-impl-requires-const-trait.rs
blob: bd6f476f8792a24fa798f1da2103bef99bd95fa0 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #110395
#![
feature
(
const_trait_impl
,
effects
)]
pub
trait
A
{}
// FIXME ~^ HELP: mark `A` as const
impl
const
A
for
()
{}
// FIXME ~^ ERROR: const `impl` for trait `A` which is not marked with `#[const_trait]`
fn
main
()
{}