]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Import/overloaded-function/test.c
Vendor import of clang trunk r300422:
[FreeBSD/FreeBSD.git] / test / Import / overloaded-function / test.c
1 // RUN: clang-import-test -import %S/Inputs/F1.c -import %S/Inputs/F2.c -expression %s
2 void expr() {
3   f(2);
4   f("world");
5   S s;
6   f(s);
7 }