Sign in
android
/
toolchain
/
rustc
/
32f7835b4f844d645621e83c89a3178ef87b0d69
/
.
/
src
/
test
/
ui
/
associated-consts
/
associated-const-in-trait.rs
blob: f3024120df1f957a88e29f085f78c03f095945f6 [
file
] [
log
] [
blame
]
// #29924
#![
feature
(
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
()
{}