summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/33106-pos_bool_in_template.h
blob: f5fdb04e61d3d97c8a8d7b6d967aaaad6426d175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <type_traits>

template<typename U,
         typename V,
         typename = std::enable_if_t<!std::is_convertible<U,
                                                          V>::value &&
                                     !std::is_same<U,
                                                   V>::value> >
void foo(U &&u,
         V &&v)
{

}