Clang Project
clang_source_code
/
test
/
Import
/
overloaded-function
/
Inputs
/
F2.c
1
struct S { int a; };
2
3
void f(const char *arg) { }
4
void f(S arg) { }
5