llvm-project
8 строк · 295.0 Байт
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3void f(...) {
4// FIXME: There's no disambiguation here; this is unambiguous.
5int g(int(...)); // expected-warning {{disambiguated}} expected-note {{paren}}
6}
7
8void h(int n..., int m); // expected-error {{expected ')'}} expected-note {{to match}}
9