C++: Update the test.c comments

This commit is contained in:
Calum Grant
2024-11-22 14:56:13 +00:00
parent 4d851440b6
commit 227f9c7c1b

View File

@@ -30,8 +30,8 @@ void test(int *argv[]) {
not_yet_declared1(1); // BAD (GOOD for everything except for cpp/implicit-function-declaration)
not_yet_declared2(1); // BAD (GOOD for everything except for cpp/implicit-function-declaration)
not_yet_declared2(ca); // BAD
not_yet_declared2(); // BAD
not_yet_declared2(ca); // BAD (GOOD for everything except for cpp/mistyped-function-arguments)
not_yet_declared2(); // GOOD
declared_empty_defined_with(); // BAD
declared_empty_defined_with(1); // GOOD