13 lines
		
	
	
		
			558 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			558 B
		
	
	
	
		
			C++
		
	
	
	
// RUN: not clang-tidy %s --checks='-*,google-explicit-constructor' 2>&1 | FileCheck %s
 | 
						|
 | 
						|
// NOLINTBEGIN
 | 
						|
class A { A(int i); };
 | 
						|
 | 
						|
// Note: the expected output has been split over several lines so that clang-tidy
 | 
						|
//       does not see the "no lint" suppression comment and mistakenly assume it
 | 
						|
//       is meant for itself.
 | 
						|
// CHECK: :[[@LINE-6]]:4: error: unmatched 'NOLIN
 | 
						|
// CHECK: TBEGIN' comment without a subsequent 'NOLIN
 | 
						|
// CHECK: TEND' comment [clang-tidy-nolint]
 | 
						|
// CHECK: :[[@LINE-8]]:11: warning: single-argument constructors must be marked explicit
 |