From 777d903d71b53bc383f821106b0c0a0af052e7e7 Mon Sep 17 00:00:00 2001 From: Asuna Date: Thu, 20 Feb 2025 20:51:59 +0800 Subject: [PATCH] [Temp] Trigger test failure in CI --- spdlog/src/source_location.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/spdlog/src/source_location.rs b/spdlog/src/source_location.rs index 1db56aae..d3d0db45 100644 --- a/spdlog/src/source_location.rs +++ b/spdlog/src/source_location.rs @@ -141,3 +141,11 @@ macro_rules! __private_source_location_current_inner { None }; } + +#[cfg(test)] +mod tests { + #[test] + fn option_type_inference() { + _ = source_location_current!().is_some(); + } +}