[clang-tools-extra] [clang-tidy] Fix failing test after #80864 (PR #81171)

Krystian Stasiowski via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 8 10:47:38 PST 2024


https://github.com/sdkrystian updated https://github.com/llvm/llvm-project/pull/81171

>From ca871fca01e07bd1dcbdab3256cb1631dabca853 Mon Sep 17 00:00:00 2001
From: Krystian Stasiowski <sdkrystian at gmail.com>
Date: Thu, 8 Feb 2024 13:42:38 -0500
Subject: [PATCH] [clang-tidy] Fix failing test after
 17f0680f69f44d340fd0205f7763b2830357c0d5

---
 .../test/clang-tidy/infrastructure/diagnostic.cpp              | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/clang-tools-extra/test/clang-tidy/infrastructure/diagnostic.cpp b/clang-tools-extra/test/clang-tidy/infrastructure/diagnostic.cpp
index 547f634a101c58..d0efc5ca763753 100644
--- a/clang-tools-extra/test/clang-tidy/infrastructure/diagnostic.cpp
+++ b/clang-tools-extra/test/clang-tidy/infrastructure/diagnostic.cpp
@@ -68,5 +68,6 @@ auto S<>::foo(auto)
 {
     return 1;
 }
-// CHECK8: error: template parameter list matching the non-templated nested type 'S<>' should be empty ('template<>') [clang-diagnostic-error]
+// CHECK8: error: conflicting types for 'foo' [clang-diagnostic-error]
+// CHECK8: note: previous declaration is here
 #endif



More information about the cfe-commits mailing list