1static inline int fun(void) { return 42; }
2
3int fi(void) { return fun(); }
4
5int i0(void) { return (fun)(); }
6int i1(void) { return (*fun)(); }		// C99,C11 6.5.3.2p4
7int i2(void) { return (**fun)(); }		// C99,C11 6.5.3.2p4
8int i3(void) { return (***fun)(); }		// C99,C11 6.5.3.2p4
9
10/*
11 * check-name: inline calls
12 * check-command: test-linearize -Wno-decl $file
13 *
14 * check-output-ignore
15 * check-output-excludes: load
16 * check-output-excludes: \\tcall
17 * check-output-pattern(5): ret\\..* \\$42
18 */
19