blob: 4f3cf1fe9db65b0c74b9a728355d9e9e5500db60 [file] [log] [blame]
Douglas Gregor9370c8f2011-01-12 22:11:34 +00001// RUN: %clang_cc1 -std=c++0x -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
2
3template<typename ...Types>
4int get_num_types(Types...) {
5 return sizeof...(Types);
6}
7
Douglas Gregordce73972011-01-13 18:03:24 +00008// CHECK: define weak_odr i32 @_Z13get_num_typesIJifdEEiDpT_
Douglas Gregor9370c8f2011-01-12 22:11:34 +00009// CHECK: ret i32 3
10template int get_num_types(int, float, double);
11
12