Fix diagnostic in verify test to match new Clang output

llvm-svn: 307450
This commit is contained in:
Eric Fiselier 2017-07-07 23:02:30 +00:00
parent f856dbdb02
commit f29a1b921c
1 changed files with 1 additions and 1 deletions

View File

@ -30,5 +30,5 @@ typedef volatile std::packaged_task<A(int, char)> VPT;
int main()
{
PT p { std::allocator_arg_t{}, test_allocator<A>{}, VPT {}}; // expected-error {{no matching constructor for initialization of 'PT' (aka 'packaged_task<A (int, char)>')}}
// expected-note@future:* 1 {{candidate template ignored: disabled by 'enable_if'}}
// expected-note-re@future:* 1 {{candidate template ignored: {{(disabled by 'enable_if')|(requirement '.*' was not satisfied)}}}}
}