1*67e74705SXin Li // RUN: %clang_cc1 -fsyntax-only -verify %s 2*67e74705SXin Li f(...)3*67e74705SXin Livoid f(...) { 4*67e74705SXin Li // FIXME: There's no disambiguation here; this is unambiguous. 5*67e74705SXin Li int g(int(...)); // expected-warning {{disambiguated}} expected-note {{paren}} 6*67e74705SXin Li } 7*67e74705SXin Li 8*67e74705SXin Li void h(int n..., int m); // expected-error {{expected ')'}} expected-note {{to match}} 9