]> git.proxmox.com Git - rustc.git/blob - vendor/once_cell/examples/reentrant_init_deadlocks.rs
New upstream version 1.39.0+dfsg1
[rustc.git] / vendor / once_cell / examples / reentrant_init_deadlocks.rs
1 fn main() {
2 let cell = once_cell::sync::OnceCell::<u32>::new();
3 cell.get_or_init(|| {
4 cell.get_or_init(|| 1);
5 2
6 });
7 }