xref: /minix3/external/bsd/llvm/dist/clang/test/Parser/PR11000.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: not %clang_cc1 -std=c++11 %s 2>&1 | FileCheck %s
2 
3 // PR11000: Don't crash.
4 class tuple<>
5 {
6     template <class _Alloc>
tuple(allocator_arg_t,const _Alloc &)7         tuple(allocator_arg_t, const _Alloc&) {}
8 
9 // CHECK: 6 errors generated.
10