C++: Respond to review comments.

This commit is contained in:
Mathias Vorreiter Pedersen
2024-07-30 13:19:02 +01:00
parent afc0d0a078
commit ef0370b64e
4 changed files with 19 additions and 8 deletions

View File

@@ -161,4 +161,7 @@ void test2()
void test_format() {
auto s = std::format("{}", string::source());
sink(s); // $ ir MISSING: ast
auto s2 = std::format(string::source());
sink(s2); // $ ir MISSING: ast
}