diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-02-14 03:18:24 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-02-14 03:18:24 +0000 |
commit | eb7702e07d1d924752bd41e707a66e9a755297fc (patch) | |
tree | ffc93f95480ba1dd3ebb60102d00b7383c97ff3c /clang/test/Parser/cxx1z-class-template-argument-deduction.cpp | |
parent | a0ddb1ed46ddeabef4c345e1c540ecf3cf7b9383 (diff) | |
download | bcm5719-llvm-eb7702e07d1d924752bd41e707a66e9a755297fc.tar.gz bcm5719-llvm-eb7702e07d1d924752bd41e707a66e9a755297fc.zip |
clang/test/Parser/cxx1z-class-template-argument-deduction.cpp: Tweak to ignore thiscall.
Line 38: multiple overloads of 'f' instantiate to the same signature 'void (int) __attribute__((thiscall))'
llvm-svn: 295020
Diffstat (limited to 'clang/test/Parser/cxx1z-class-template-argument-deduction.cpp')
-rw-r--r-- | clang/test/Parser/cxx1z-class-template-argument-deduction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Parser/cxx1z-class-template-argument-deduction.cpp b/clang/test/Parser/cxx1z-class-template-argument-deduction.cpp index b7c7ef7500c..dac17dfbf48 100644 --- a/clang/test/Parser/cxx1z-class-template-argument-deduction.cpp +++ b/clang/test/Parser/cxx1z-class-template-argument-deduction.cpp @@ -35,7 +35,7 @@ namespace injected_class_name { A a = 1; injected_class_name::A b = 1; // expected-note {{in instantiation of template class 'injected_class_name::A<int>'}} } - void f(T); // expected-error {{multiple overloads of 'f' instantiate to the same signature 'void (int)'}} + void f(T); // expected-error {{multiple overloads of 'f' instantiate to the same signature 'void (int)}} }; A<short> ai = 1; A<double>::A b(1); // expected-error {{constructor name}} |