hanchenye-llvm-project/clang-tools-extra/test/clang-tidy/deduplication.cpp

13 lines
306 B
C++
Raw Normal View History

// RUN: clang-tidy -checks='-*,google-explicit-constructor' %s -- | FileCheck %s
template<typename T>
struct A { A(T); };
// CHECK: :[[@LINE-1]]:12: warning: Single-argument constructors must be explicit [google-explicit-constructor]
// CHECK-NOT: warning:
void f() {
A<int> a(0);
A<double> b(0);
}