summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/34527-sp_paren_brace.cpp
blob: aa65f644905fe1e96c3c191039787199a679ce71 (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