blob: 4ca98e2f03d97310cb5f68908793c635f2db8109 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* { dg-do compile } */
/* Copyright (C) 2000 Free Software Foundation */
/* Contributed by Alexandre Oliva <aoliva@cygnus.com> */
static int foo () { return 0; }
void bar () {
int foo ();
int foo ();
}
|