| // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11 |
| template<typename U> only(U) = delete; // expected-note {{here}} |
| auto x(t...); // expected-error {{is empty}} expected-error {{contains multiple expressions}} |
| f(); // expected-note {{here}} |
| f(0, 1); // expected-note {{here}} |
| only<double*> test = p; // expected-error {{conversion function from 'char *' to 'only<double *>'}} |
| bool b = h('x'); // expected-note {{here}} |
| // PR 9276 - Make sure we check auto types deduce the same |
| // in the case of a dependent initializer |
| auto i = T(), j = 0; // expected-error {{deduced as 'long' in declaration of 'i' and deduced as 'int' in declaration of 'j'}} |
| f<long>(); // expected-note {{here}} |
| namespace NoRepeatedDiagnostic { |
| auto a = 0, b = 0.0, c = T(); // expected-error {{deduced as 'int' in declaration of 'a' and deduced as 'double' in declaration of 'b'}} |
| // We've already diagnosed an issue. No extra diagnostics is needed for these. |
| template void f<double>(); |