// RUN: %clang_cc1 -std=c++20 %s -fsyntax-only -verify // expected-no-diagnostics namespace lib { namespace impl { template inline constexpr bool test = false; } using impl::test; } struct foo {}; template <> inline constexpr bool lib::test = true; static_assert(lib::test);