rustc/tests/ui/associated-consts/associated-const-outer-ty-refs.rs
2024-06-21 09:39:33 +02:00

12 lines
142 B
Rust

//@ check-pass
trait Lattice {
const BOTTOM: Self;
}
impl<T> Lattice for Option<T> {
const BOTTOM: Option<T> = None;
}
fn main(){}