aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pch/inline-2.c
blob: 59b238a3b7a2efa3df06ac2190b2b13ac89eb005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "inline-2.h"
extern inline char
bar(int a)
{
  return foo(a)[0];
}

extern inline char
baz(void)
{
  return foo(0)[0];
}