Lines Matching refs:panic
16 c.get_or_init(|| panic!("Kabom!"));
202 let l: Lazy<i32, _> = Lazy::new(|| panic!());
212 let x: Lazy<String> = Lazy::new(|| panic!("kaboom"));
214 let res = std::panic::catch_unwind(|| x.len());
277 c.get_or_init(|| panic!("Kabom!"));
350 std::panic::catch_unwind(|| cell.get_or_try_init(|| -> Result<_, ()> { panic!() }));
585 let l: Lazy<i32, _> = Lazy::new(|| panic!());
594 let x: Lazy<String> = Lazy::new(|| panic!("kaboom"));
596 let res = std::panic::catch_unwind(|| x.len());