summaryrefslogtreecommitdiffstats
path: root/test/SemaTemplate/member-inclass-init-value-dependent.cpp
blob: d1ae4f2ded5f26205da3afc08b63c3db4b583772 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -emit-llvm-only %s
// PR10290

template<int Flags> struct foo {
  int value = Flags && 0;
};

void test() {
  foo<4> bar;
}

OpenPOWER on IntegriCloud