Sign in
rust
/
rust
/
4530e26f4eec47b92061d9ab3fca18ed8db97e63
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
const_trait.rs
blob: 99414a74f250cf880c1d4f327ec205a2c4349b99 [
file
] [
log
] [
blame
]
#![
feature
(
trait_alias
,
const_trait_impl
)]
const
trait
Bar
{}
const
trait
Foo
=
Bar
;
impl
const
Bar
for
()
{}
// const impl gets reformatted to impl const.. for now
const
impl
Bar
for
u8
{}
struct
X
;
const
impl
X
{}