8 lines · cpp
1// RUN: clang-tidy -checks='-*,google-explicit-constructor' %s -- | FileCheck %s2 3#define Q(name) class name { name(int i); }4 5Q(A);6// CHECK: :[[@LINE-1]]:3: warning: single-argument constructors must be marked explicit7// CHECK: :3:30: note: expanded from macro 'Q'8