xref: /minix3/external/bsd/llvm/dist/clang/test/Parser/PR11000.cpp (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
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>
7         tuple(allocator_arg_t, const _Alloc&) {}
8 
9 // CHECK: 6 errors generated.
10