468663ddbb
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
8 lines
268 B
C++
8 lines
268 B
C++
// RUN: clang-tidy -checks='-*,google-explicit-constructor' %s -- | FileCheck %s
|
|
|
|
#define Q(name) class name { name(int i); }
|
|
|
|
Q(A);
|
|
// CHECK: :[[@LINE-1]]:3: warning: single-argument constructors must be marked explicit
|
|
// CHECK: :3:30: note: expanded from macro 'Q'
|