1 2 3 4 5 6 7 8 9 10
// run-pass trait Lattice { const BOTTOM: Self; } impl<T> Lattice for Option<T> { const BOTTOM: Option<T> = None; } fn main(){}