aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wcxx-compat-11.c
blob: 8818338ad5e5a7521d79611c53e8c362170c5066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-Wc++-compat" } */

#include <stdarg.h>

enum E { A };

extern void f2 (int);
void
f1 (int n, ...)
{
  va_list ap;

  va_start (ap, n);
  f2 (va_arg (ap, int));
  f2 (va_arg (ap, _Bool));	/* { dg-warning "promoted" } */
  f2 (va_arg (ap, enum E));	/* { dg-warning "promoted" } */
}

/* Match extra informative notes.  */
/* { dg-message "note:" "expected" { target *-*-* } 0 } */