We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc15380 commit 4cc9142Copy full SHA for 4cc9142
llvm/unittests/Support/FileCheckTest.cpp
@@ -796,10 +796,10 @@ TEST_F(FileCheckTest, Binop) {
796
std::move(Binop2));
797
ImplicitFormat = OuterBinop->getImplicitFormat(SM);
798
expectSameErrors<ErrorDiagnostic>(
799
- {"implicit format conflict between 'FOO' (%u) and 'BAZ' (%x), "
800
- "need an explicit format specifier",
801
- "implicit format conflict between 'FOO' (%u) and 'QUUX' (%x), "
802
- "need an explicit format specifier"},
+ {("implicit format conflict between 'FOO' (%u) and 'BAZ' (%x), need an "
+ "explicit format specifier"),
+ ("implicit format conflict between 'FOO' (%u) and 'QUUX' (%x), need an "
+ "explicit format specifier")},
803
ImplicitFormat.takeError());
804
}
805
0 commit comments