git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103516 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			29 lines
		
	
	
		
			669 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			669 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
// <map>
 | 
						|
 | 
						|
// class map
 | 
						|
 | 
						|
// explicit map(const key_compare& comp);
 | 
						|
 | 
						|
#include <map>
 | 
						|
#include <cassert>
 | 
						|
 | 
						|
#include "../../../test_compare.h"
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
    typedef test_compare<std::less<int> > C;
 | 
						|
    std::map<int, double, C> m(C(3));
 | 
						|
    assert(m.empty());
 | 
						|
    assert(m.begin() == m.end());
 | 
						|
    assert(m.key_comp() == C(3));
 | 
						|
}
 |