Clang Project

clang_source_code/test/Modules/Inputs/self-referencing-lambda/a.h
1void f() {
2  int x = 0;
3  auto q = [xm = x]{};
4}
5