aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/alias-decl-31.C
blob: 83eea471d07cc73e643b0826c7acbc66213bee1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Origin: PR c++/55663
// { dg-do compile { target c++11 } }

template <typename>
constexpr bool the_truth () { return true; }

template <bool>
  struct Takes_bool { };

template<bool B>
  using Alias = Takes_bool<B>;

template<typename T>
  struct test { using type = Alias<the_truth<T>()>; };

int main () {
  test<int> a;

  return 0;
}