summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/30317-braced_init_template_decltype.cpp
blob: 3c22d790c60124a3f48d6422d9fa14f1d12e91c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <algorithm>
#include <type_traits>

template<typename Arg,
         typename ... Args,
         typename std::enable_if <!std::is_same<Arg,
                                                decltype (std::make_index_sequence<5> { })>::value,
                                  int>::type = 0>
void foo(Arg &&arg,
         Args && ... args)
{

}