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