We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dac535 commit 4126d67Copy full SHA for 4126d67
1 file changed
test/testtokenize.cpp
@@ -7147,6 +7147,7 @@ class TestTokenizer : public TestFixture {
7147
ASSERT_EQUALS("crequires{ac::||= a{b{||",
7148
testAst("template <class a, class b> concept c = requires { a{} || b{}; } || a::c;"));
7149
ASSERT_EQUALS("ifrequires{(", testAst("if (requires { true; }) {}")); // #13308
7150
+ ASSERT_EQUALS("Crequires({requires({||= sizeofT(4== sizeofT(8==", testAst("concept C = requires() { sizeof(T) == 4; } || requires() { sizeof(T) == 8; };"));
7151
}
7152
7153
void astcast() {
0 commit comments