repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git]
/
clang
/
test
/
SemaTemplate
/
template-args-deduction-aggregates.cpp
blob
afe78d0873bb332d2205fbbbc60c658a57e86270
1
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++20
2
3
// expected-no-diagnostics
4
5
namespace
GH113659
{
6
template
<
class
...
Args
>
struct
S
{};
7
struct
T
{};
8
struct
U
{};
9
10
template
<
class
...
Args
>
struct
B
:
S
<
Args
...>,
Args
... {};
11
B b
{
S
<
T
,
U
>{}};
12
}