summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/braced_init_template_decltype.cpp
blob: bfd5ef8638f753f735f5aa5b86f5dd3721b1f469 (plain)
1
2
3
4
5
6
7
8
#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)
{

}