blob: 873e4d48e8374b0d35d459fbe15c48e94fd95a0e [file] [log] [blame]
Elizabeth Andrewsa58017e2020-02-12 11:30:02 -08001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// expected-no-diagnostics
3
4template <int b>
5class A {
6 int c : b;
7
8public:
9 void f() {
10 if (c)
11 ;
12 }
13};