blob: 1fe5882340f31abcc2db489a220cea42269ae85a [file] [log] [blame]
/* Copyright (C) 2000 Free Software Foundation */
/* make sure we don't get confused by various flavors of void */
/* Origin: Jakub Jelinek <jakub@redhat.com>
* Joel Sherrill <joel.sherrill@OARcorp.com>
*/
typedef void foo;
foo bar(void);
void baz(void)
{
bar();
}
void volatile f();
int x()
{
f();
}