summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/sp_paren_brace.cpp
blob: 4ac73f87546c009fd2213d9524da1ce705be426c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
void *stopper_for_apply = (int[])               {0};
//                               ^ here

template<typename T, typename U>
auto add(T t, U u) -> decltype(t + u)                {
//                                   ^ here
	return t + u;
}

void f()noexcept()               {
//                ^ here
}

#define FOO5(x) for(;;) (!(x))                { *(volatile int*)0 = 1; }
//                            ^ here

(struct foo)      {...}
//          ^ here