[RISCV] Match vcompress during shuffle lowering (#117748)
[llvm-project.git] / clang / test / Analysis / Inputs / ctu-lookup-name-with-space.cpp
blob0d4fd974d3d4f32ab23cc0e0f17fe23d1a868b97
1 void f(void (*)());
2 void f(void (*)(int));
4 struct G {
5 G() {
6 // multiple definitions are found for the same key in index
7 f([]() -> void {}); // USR: c:@S@G@F@G#@Sa@F@operator void (*)()#1
8 f([](int) -> void {}); // USR: c:@S@G@F@G#@Sa@F@operator void (*)(int)#1
10 // As both lambda exprs have the same prefix, if the CTU index parser uses
11 // the first space character as the delimiter between USR and file path, a
12 // "multiple definitions are found for the same key in index" error will
13 // be reported.
17 void importee() {}