()
| 2328 | } |
| 2329 | |
| 2330 | fn regex_std_usage() -> &'static Regex { |
| 2331 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 2332 | VALUE.get_or_init(|| Regex::new(r"std::\w+").unwrap()) |
| 2333 | } |
| 2334 | |
| 2335 | fn regex_serial_method() -> &'static Regex { |
| 2336 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
no outgoing calls
no test coverage detected