1static @INLINE_KEYWORD@ void test_inline(void)
2{
3	return;
4}
5
6int main (void)
7{
8	test_inline ();
9	return 0;
10}
11