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