forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			314 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			314 B
		
	
	
	
		
			C++
		
	
	
	
| // RUN: %clang_cc1 -std=c++0x -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
 | |
| 
 | |
| template<typename ...Types>
 | |
| int get_num_types(Types...) {
 | |
|   return sizeof...(Types);
 | |
| }
 | |
| 
 | |
| // CHECK: define weak_odr i32 @_Z13get_num_typesIJifdEEiDpT_
 | |
| // CHECK: ret i32 3
 | |
| template int get_num_types(int, float, double);
 | |
| 
 | |
| 
 |