blob: 0c3cee1a3741f86d810518b749da1cf2c7c3bc17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* { dg-do compile } */
/* Copyright (C) 2000 Free Software Foundation */
/* Contributed by Alexandre Oliva <aoliva@redhat.com> */
inline double fx (double x)
{
return 3 * x;
}
main ()
{
double a = 0, fx (double), foo ();
fx (a);
if (a != 3)
foo ();
}
|