Sign in
android
/
toolchain
/
rustc
/
247d86b41af526c167272cfa93558c963a2b4bd5
/
.
/
src
/
llvm-project
/
clang
/
test
/
CXX
/
temp
/
concept
/
p4.cpp
blob: 2e0226779f5ab0e7a35ed0c2ee880942abcedabb [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -std=c++2a -verify %s
template
<
typename
T
>
requires
true
concept
C
=
true
;
// expected-error{{concept cannot have associated constraints}}
// TODO: Add test for other kinds of associated constraints once we have them.