()
| 1880 | } |
| 1881 | |
| 1882 | fn regex_static_assert() -> &'static Regex { |
| 1883 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 1884 | VALUE.get_or_init(|| Regex::new(r"\bstatic_assert\s*\(").unwrap()) |
| 1885 | } |
| 1886 | |
| 1887 | fn regex_using_namespace_fl() -> &'static Regex { |
| 1888 | static VALUE: OnceLock<Regex> = OnceLock::new(); |