Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
associated-consts
/
associated-const-outer-ty-refs.rs
blob: 460811353f0e69ca580530c5dacc76fcbbcd9c34 [
file
] [
log
] [
blame
]
//@ check-pass
trait
Lattice
{
const
BOTTOM
:
Self
;
}
impl
<
T
>
Lattice
for
Option
<
T
>
{
const
BOTTOM
:
Option
<
T
>
=
None
;
}
fn
main
(){}