blob: 10a8dfbb8f0b4eeba38179dc29ca3fc7cb9007e1 [file] [log] [blame]
// PR c++/81589
template <typename k>
struct z {
z() {
k::error;
}
};
int x = __is_trivially_constructible(z<int>);