1inline void fun(void) 2{ 3 undecl(); 4} 5 6void foo(void); 7void foo(void) 8{ 9 fun(); 10 fun(); 11} 12 13/* 14 * check-name: undecl-no-indent 15 * 16 * check-error-start 17eval/undecl-no-indent.c:3:9: error: undefined identifier 'undecl' 18 * check-error-end 19 */ 20