Files
codeql/cpp/ql/test/query-tests/jsf/4.04 Environment/AV Rule 13/test.cpp
2026-07-07 09:49:50 +01:00

11 lines
162 B
C++

int main()
{
const char *const_str = "";
const wchar_t *const_wstr = L""; // $ Alert // BAD
char c = 'c';
wchar_t wc = L'c'; // $ Alert // BAD
return 0;
}