http://llvm.org/bugs/show_bug.cgi?id=19155
Bug ID: 19155
Summary: Compiler Crashed when compiling variadic templates
with default template parameter.
Product: clang
Version: 3.2
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: C++11
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected], [email protected]
Classification: Unclassified
Just try compiling this:
#include <iostream>
template <class... T1, class Tuple = std::tuple<T1...>>
void Con(){ std::cout << sizeof...(T1) << std::endl; }
int main()
{ Con<int, bool>(); return 0; }
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs