blob: 91e38acdb11951c7380143d987bf8bfe509ddf2a [file] [log] [blame]
// 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 explicit [google-explicit-constructor]
// CHECK: :3:30: note: expanded from macro 'Q'