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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CXX
/
temp
/
concept
/
p4.cpp
blob
2e0226779f5ab0e7a35ed0c2ee880942abcedabb
1
// RUN: %clang_cc1 -std=c++2a -verify %s
2
3
template
<
typename T
>
requires
true
4
concept C
=
true
;
// expected-error{{concept cannot have associated constraints}}
5
6
// TODO: Add test for other kinds of associated constraints once we have them.