brintos

brintos / llvm-project-archived public Read only

0
0
Text · 247 B · 056fe4e Raw
11 lines · cpp
1// RUN: %check_clang_tidy %s google-explicit-constructor %t2 3template<typename T>4struct A { A(T); };5// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: single-argument constructors must be marked explicit6 7void f() {8  A<int> a(0);9  A<double> b(0);10}11