"packaged_task"// expected-note{{place parentheses around the string literal to silence warning}}
"promise",// expected-warning{{suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma?}}
"shared_future"
};
#ifndef __cplusplus
typedef__WCHAR_TYPE__wchar_t;
#endif
constwchar_t*missing_comma_wchar[]={
L"basic_filebuf",
L"packaged_task"// expected-note{{place parentheses around the string literal to silence warning}}
L"promise",// expected-warning{{suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma?}}
u8"promise",// expected-warning{{suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma?}}
"future""optional",// expected-note{{place parentheses around the string literal to silence warning}}
"packaged_task","promise"};// expected-warning@-1{{suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma?}}
constchar*missing_comma_different_lines[]={"basic_filebuf","basic_ios"// expected-note{{place parentheses around the string literal to silence warning}}
"future","optional",// expected-warning{{suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma?}}
"packaged_task","promise"};
constchar*missing_comma_same_line_all_literals[]={"basic_filebuf","future""optional","packaged_task"};// expected-note{{place parentheses around the string literal to silence warning}}
// expected-warning@-1{{suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma?}}
};// expected-warning@-1{{suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma?}}