[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git] / clang / test / SemaTemplate / template-args-deduction-aggregates.cpp
blobafe78d0873bb332d2205fbbbc60c658a57e86270
1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++20
3 // expected-no-diagnostics
5 namespace GH113659 {
6 template <class... Args> struct S {};
7 struct T {};
8 struct U {};
10 template <class... Args> struct B : S<Args...>, Args... {};
11 B b{S<T, U>{}};