// RUN: %check_clang_tidy %s google-explicit-constructor %t template struct A { A(T); }; // CHECK-MESSAGES: :[[@LINE-1]]:12: warning: single-argument constructors must be marked explicit void f() { A a(0); A b(0); }