22 lines
		
	
	
		
			458 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			458 B
		
	
	
	
		
			C++
		
	
	
	
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
// <mutex>
 | 
						|
 | 
						|
// struct once_flag;
 | 
						|
 | 
						|
// constexpr once_flag();
 | 
						|
 | 
						|
#include <mutex>
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
    std::once_flag f;
 | 
						|
}
 |