// run-pass trait Lattice { const BOTTOM: Self; } impl Lattice for Option { const BOTTOM: Option = None; } fn main(){}