• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 extern int a, b;
c(void)2 inline int c(void) { return a++; }
e(int d)3 inline int e(int d) { return 0; }
f(void)4 inline unsigned f(void) { return e(_Generic(b, int: c())); }
g(void)5 static int g(void) { return f(); }
h(void)6 static int h(void) { return f(); }
7 
8 /*
9  * check-name: inline-generic
10  */
11