summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/60088-Issue_3761.cpp
blob: b3f8cbb502c1d66ed0aac728248f6ec6e5e82440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void f(void (*g)())
{
}

int main()
{
	f([]() {
		int x = 1;
		switch (x) {
		case 1:
			break;
		}
	});
}