1 // RUN: %check_clang_tidy -std=c++20 %s misc-use-internal-linkage %t -- -- -I%S/Inputs/use-internal-linkage 2 3 consteval void gh122096() {} 4 5 constexpr void cxf() {} 6 // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: function 'cxf' 7 // CHECK-FIXES: static constexpr void cxf() {} 8