// RUN: %clang_cc1 -std=c++17 -verify %s // expected-no-diagnostics template struct DominatorTreeBase { static constexpr bool IsPostDominator = true; }; extern template class DominatorTreeBase; constexpr bool k = DominatorTreeBase::IsPostDominator; namespace CompleteType { template constexpr int f(const bool (&)[N]) { return 0; } template struct X { static constexpr bool arr[] = {V...}; static constexpr int value = f(arr); }; constexpr int n = X::value; }