4 lines
68 B
C++
4 lines
68 B
C++
|
void f(int X, int Y, bool Z) {
|
||
|
auto x = [X, Y, Z] { (void)Z; };
|
||
|
}
|