summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34209-lambda_selfcalling.cpp
blob: 8f0c819e0f3594d6c2ef39e279a9f211fa3ad1d0 (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);
}