mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
23 lines
384 B
Rust
23 lines
384 B
Rust
//@ known-bug: #124182
|
|
struct LazyLock<T> {
|
|
data: (Copy, fn() -> T),
|
|
}
|
|
|
|
impl<T> LazyLock<T> {
|
|
pub const fn new(f: fn() -> T) -> LazyLock<T> {
|
|
LazyLock { data: (None, f) }
|
|
}
|
|
}
|
|
|
|
struct A<T = i32>(Option<T>);
|
|
|
|
impl<T> Default for A<T> {
|
|
fn default() -> Self {
|
|
A(None)
|
|
}
|
|
}
|
|
|
|
static EMPTY_SET: LazyLock<A<i32>> = LazyLock::new(A::default);
|
|
|
|
fn main() {}
|