Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
traits
/
const-traits
/
const-impl-recovery.rs
blob: 047fb986630100ff914e009a6c14570940a9c403 [
file
] [
log
] [
blame
]
#![
feature
(
const_trait_impl
)]
//@ check-pass
const
trait
Foo
{}
const
impl
Foo
for
i32
{}
const
trait
Bar
{}
const
impl
<
T
:
Foo
>
Bar
for
T
{}
const
fn
still_implements
<
T
:
Bar
>()
{}
const
_
:
()
=
still_implements
::<
i32
>();
fn
main
()
{}