blob: 06ff5269ee2b6b577b9f256fbe4762073315537f [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-W -Wall" } */
typedef unsigned long size_t;
extern void* malloc (size_t);
extern void free (void*);
extern void* realloc (void*, size_t);
struct vtable {
void* (* _malloc) (size_t);
void (* _free) (void*);
void* (* _realloc) (void*, size_t);
};
struct vtable mtable = {
malloc,
free
}; /* { dg-warning "missing initializer" "warning regression" { target *-*-* } {18} } */
/* { dg-warning "initialization for `mtable._realloc'" "warning regression" { target *-*-* } {18} } */
struct vtable mtable2 = {
._malloc = malloc,
._realloc = realloc
}; /* { dg-warning "missing initializer" "warning regression" { target *-*-* } {24} } */
/* { dg-warning "initialization for `mtable2._free'" "warning regression" { target *-*-* } {24} } */
struct vtable mtable3 = {
._free = free,
._malloc = malloc,
._realloc = realloc
};