Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
src
/
test
/
ui
/
associated-const
/
associated-const-in-trait.rs
blob: cc3acd539562279c9bfcb7ed06afd6cbb920fb05 [
file
] [
log
] [
blame
]
// #29924
#![
feature
(
const_fn
,
associated_consts
)]
trait
Trait
{
const
N
:
usize
;
}
impl
dyn
Trait
{
//~^ ERROR the trait `Trait` cannot be made into an object [E0038]
const
fn
n
()
->
usize
{
Self
::
N
}
}
fn
main
()
{}