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