blob: 9df6d41063b06c91b4387129b56ec97cda1d9a27 [file] [log] [blame]
// PR c++/34774
template<int shifts>
struct shift {
enum {
n0 = (unsigned)shifts,
n = n0 ? 0 : n0,
n_comp = -n
} x;
};