f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
18 lines
224 B
C++
18 lines
224 B
C++
// RUN: %clang_cc1 -emit-llvm-only %s
|
|
// PR10290
|
|
|
|
template<int Flags> struct foo {
|
|
int value = Flags && 0;
|
|
};
|
|
|
|
void test() {
|
|
foo<4> bar;
|
|
}
|
|
|
|
struct S {
|
|
S(int n);
|
|
};
|
|
template<typename> struct T {
|
|
S s = 0;
|
|
};
|
|
T<int> t;
|