view gcc/testsuite/g++.dg/ext/va-arg1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// PR c++/33462

struct A {};

void foo()
{
  ++__builtin_va_arg (0, A);
  // { dg-error "operand type is 'A'" "" {target *-*-*} "7" }
  // { dg-error "first argument to 'va_arg' not of type 'va_list'" "" {target *-*-*} "7" }
}