1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
3 
4 template <int b>
5 class A {
6   int c : b;
7 
8 public:
f()9   void f() {
10     if (c)
11       ;
12   }
13 };
14