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
[lldb][DWARFASTParserClang][NFC] Remove unused parameter to CompleteRecordType (...
[llvm-project.git]
/
clang
/
test
/
CXX
/
temp
/
temp.decls
/
temp.fct
/
temp.func.order
/
p2.cpp
blob
df1bbd5fe8128827f55152d45125bc6637417f85
1
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++20 %s
2
// expected-no-diagnostics
3
4
namespace
GH77377
{
5
template
<
typename T
>
6
concept C
=
sizeof
(
T
) ==
sizeof
(
int
);
7
8
template
<
auto
N
>
9
struct
A
;
10
11
template
<
C
auto
N
>
12
struct
A
<
N
>;
13
}