aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/is_trivially_constructible6.C
blob: 10a8dfbb8f0b4eeba38179dc29ca3fc7cb9007e1 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/81589

template <typename k>
struct z {
  z() {
    k::error;
  }
};

int x = __is_trivially_constructible(z<int>);