// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++20 // expected-no-diagnostics namespace GH113659 { template struct S {}; struct T {}; struct U {}; template struct B : S, Args... {}; B b{S{}}; }