add clang
This commit is contained in:
parent
4715742aa8
commit
9a4b261179
890 changed files with 229323 additions and 20 deletions
12
05/tcc-final/tests/tests2/105_local_extern.c
Normal file
12
05/tcc-final/tests/tests2/105_local_extern.c
Normal file
|
@ -0,0 +1,12 @@
|
|||
extern int printf(const char *, ...);
|
||||
void f(void);
|
||||
void bar(void) { void f(void); f(); }
|
||||
void foo(void) { extern void f(void); f(); }
|
||||
void f(void) { printf("f\n"); }
|
||||
|
||||
int main()
|
||||
{
|
||||
bar();
|
||||
foo();
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue