view gcc/testsuite/c-c++-common/pr70756-2.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/70756 */
/* { dg-do compile } */
/* { dg-options "-Wpointer-arith" } */

extern void bar (void);

void
fn (void *p)
{
  void *a = p + 1; /* { dg-warning "15:pointer of type" } */
  void (*a2)(void) = &bar + 1; /* { dg-warning "27:pointer to a function" } */
}