mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 14:11:27 +00:00
11 lines
138 B
Rust
11 lines
138 B
Rust
// run-pass
|
|
trait Lattice {
|
|
const BOTTOM: Self;
|
|
}
|
|
|
|
impl<T> Lattice for Option<T> {
|
|
const BOTTOM: Option<T> = None;
|
|
}
|
|
|
|
fn main(){}
|