mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 18:24:04 +00:00
12 lines
142 B
Rust
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(){}
|