blob: 98a34d3e1bf6719fcf895c6ef418d1d2be6545f6 [file] [log] [blame]
Richard Smith36ee9fb2014-08-11 23:30:23 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Cedric Venet084381332009-02-14 20:20:19 +00002
3void f(...) {
Justin Bognerd26f95b2015-02-23 22:36:28 +00004 // FIXME: There's no disambiguation here; this is unambiguous.
5 int g(int(...)); // expected-warning {{disambiguated}} expected-note {{paren}}
Cedric Venet084381332009-02-14 20:20:19 +00006}
Richard Smith36ee9fb2014-08-11 23:30:23 +00007
8void h(int n..., int m); // expected-error {{expected ')'}} expected-note {{to match}}