blob: 47564c049f52625adb7356905352da7bd80c6c2f [file] [log] [blame]
/* Test diagnostics for sizeof on void and function types. Test with
no special options. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "" } */
extern const void v;
void f(void);
void
g (void)
{
sizeof (v);
sizeof (void);
sizeof (f);
sizeof (void (void));
}