• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

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