summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34525-sp_paren_brace.cpp
blob: febfb72d7e0f7e19fcf0ca19dd62da34f2946fd4 (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