view gcc/testsuite/gcc.dg/struct-semi-4.c @ 111:04ced10e8804

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

/* Test for missing semicolons in structures: anonymous structures and
   similar cases.  */
/* { dg-do compile } */
/* { dg-options "" } */

struct s { struct { int a; } }; /* { dg-warning "no semicolon" } */
int *f (struct s *p) { return &p->a; }