From 3c44f2d3003c687901226d66309ea223cf954c56 Mon Sep 17 00:00:00 2001 From: Jaeheon Shim Date: Mon, 29 Dec 2025 20:31:16 -0500 Subject: [PATCH] Remove duplicate named argument test for now --- test/compile-error-test/CMakeLists.txt | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/compile-error-test/CMakeLists.txt b/test/compile-error-test/CMakeLists.txt index 09777a62..381bd0d4 100644 --- a/test/compile-error-test/CMakeLists.txt +++ b/test/compile-error-test/CMakeLists.txt @@ -230,15 +230,6 @@ if (CMAKE_CXX_STANDARD GREATER_EQUAL 20) #endif " ERROR) - expect_compile(compiled-format-string-argument-duplicate-error " - #if defined(FMT_HAS_CONSTEVAL) && FMT_USE_NONTYPE_TEMPLATE_ARGS - using namespace fmt::literals; - fmt::format(FMT_COMPILE(\"{x}\"), \"x\"_a=42, \"x\"_a=43); - #else - #error - #endif - " ERROR) - expect_compile(compiled-format-string-missing-other-argument-error " #if defined(FMT_HAS_CONSTEVAL) && FMT_USE_NONTYPE_TEMPLATE_ARGS using namespace fmt::literals;