blob: e2e14063e91b9cbb624fed58716ab5ce5f665c39 [file] [log] [blame]
/* Test C2x variadic functions with no named parameters. Compilation tests,
invalid code. */
/* { dg-do compile } */
/* { dg-options "-std=c2x -pedantic-errors" } */
int f (...); /* { dg-message "previous declaration" } */
int f (); /* { dg-error "conflicting types" } */
int f2 (...); /* { dg-message "previous declaration" } */
int f2 (int); /* { dg-error "conflicting types" } */
int g (); /* { dg-message "previous declaration" } */
int g (...); /* { dg-error "conflicting types" } */
int g2 (int); /* { dg-message "previous declaration" } */
int g2 (...); /* { dg-error "conflicting types" } */