2015-11-28 10:25:02 +08:00
|
|
|
// RUN: %check_clang_tidy %s google-explicit-constructor %t
|
2014-03-10 17:45:49 +08:00
|
|
|
|
|
|
|
template<typename T>
|
2014-06-03 04:44:32 +08:00
|
|
|
struct A { A(T); };
|
2015-11-28 10:25:02 +08:00
|
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: single-argument constructors must be marked explicit
|
2014-03-10 17:45:49 +08:00
|
|
|
|
|
|
|
void f() {
|
2014-06-03 04:44:32 +08:00
|
|
|
A<int> a(0);
|
|
|
|
A<double> b(0);
|
2014-03-10 17:45:49 +08:00
|
|
|
}
|