summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/34209-lambda_selfcalling.cpp
blob: e37674a1b7c59f8b56d1a9ad9dfccdb315fa9398 (plain)
1
2
3
4
5
6
7
8
9
10
void f(){
	int i = 0;
	const auto j = [](int k){
			       return k+2;
		       }       (i);

	const auto l = ([](int k){
		return k+2;
	})(i);
}