| // RUN: %clang_cc1 -pedantic -std=c++1z -include %s -verify %s |
| // RUN: %clang_cc1 -pedantic -std=c++1z -emit-pch %s -o %t |
| // RUN: %clang_cc1 -pedantic -std=c++1z -include-pch %t -verify %s |
| template<typename ...T> struct A : T... { |
| template<typename ...U> void g(U ...u) { f(u...); } |
| struct Y { void f(int); }; |
| struct Z { void f(int, int); }; |
| // expected-error@13 {{no match}} |
| // expected-note@16 {{candidate}} |
| // expected-note@17 {{candidate}} |
| // expected-note@18 {{candidate}} |
| a.g(0, 0, 0); // expected-note {{instantiation of}} |