1static inline void foo(void)
2{
3	foo();
4}
5
6static void baz(void)
7{
8	foo();
9}
10
11/*
12 * check-name: inline_self
13 */
14