1/* Copyright (C) 2000 Free Software Foundation */
2
3/* make sure we don't get confused by various flavors of void */
4
5/* Origin:  Jakub Jelinek  <jakub@redhat.com>
6 *          Joel Sherrill <joel.sherrill@OARcorp.com>
7 */
8
9typedef void foo;
10foo bar(void);
11void baz(void)
12{
13  bar();
14}
15
16void volatile f();
17
18int x()
19{
20  f();
21}
22
23