Lines Matching defs:res
214 let res = std::panic::catch_unwind(|| x.len());
215 assert!(res.is_err());
349 let res =
351 assert!(res.is_err());
596 let res = std::panic::catch_unwind(|| x.len());
597 assert!(res.is_err());
624 let mut res = vec![1, 1];
626 let next = res[i] + res[i + 1];
627 res.push(next);
629 res
963 let res = cell.get_or_init(|| {
967 assert_eq!(res, "hello");