blob: d1ae4f2ded5f26205da3afc08b63c3db4b583772 [file] [log] [blame]
Nick Lewyckye4f22ad2011-07-07 02:20:13 +00001// RUN: %clang_cc1 -emit-llvm-only %s
2// PR10290
3
4template<int Flags> struct foo {
5 int value = Flags && 0;
6};
7
8void test() {
9 foo<4> bar;
10}
11