minix/external/bsd/llvm/dist/clang/test/SemaCXX/PR9461.cpp
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

32 lines
749 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// Don't crash.
template<typename,typename=int,typename=int>struct basic_string;
typedef basic_string<char> string;
template<typename aT,typename,typename oc>
struct basic_string
{
int us;
basic_string(const aT*,const oc&a=int());
int _S_construct();
int _S_construct(int);
_S_construct(); // expected-error {{requires}}
};
template<typename _CharT,typename _Traits,typename _Alloc>
basic_string<_CharT,_Traits,_Alloc>::basic_string(const _CharT*,const _Alloc&)
:us(_S_construct)
{string a;}
struct runtime_error{runtime_error(string);};
struct system_error:runtime_error{ // expected-note {{to match}}
system_error():time_error("" // expected-error 3 {{expected}} expected-note {{to match}}