1// RUN: clang-tidy %S/Inputs/nolintbeginend/1st-translation-unit.cpp %S/Inputs/nolintbeginend/2nd-translation-unit.cpp --checks='-*,google-explicit-constructor' -- 2>&1 | FileCheck %s
2
3// CHECK-NOT: 1st-translation-unit.cpp:2:11: warning: single-argument constructors must be marked explicit
4// CHECK: 1st-translation-unit.cpp:5:11: warning: single-argument constructors must be marked explicit
5// CHECK: 2nd-translation-unit.cpp:2:11: warning: single-argument constructors must be marked explicit
6// CHECK-NOT: 2nd-translation-unit.cpp:5:11: warning: single-argument constructors must be marked explicit
7

source code of clang-tools-extra/test/clang-tidy/infrastructure/nolintbeginend-multiple-TUs.cpp