xref: /llvm-project/lldb/test/API/functionalities/data-formatter/builtin-formats/main.cpp (revision ed0a14144ba980ceb29e86c9ca615b785e667dcf)
1aa7cd429SRaphael Isemann #include <cstdint>
2aa7cd429SRaphael Isemann 
3aa7cd429SRaphael Isemann const char cstring[15] = " \033\a\b\f\n\r\t\vaA09\0";
4*ed0a1414SWalter Erquinigo const char *empty_cstring = "";
5aa7cd429SRaphael Isemann 
main()6aa7cd429SRaphael Isemann int main() {
7aa7cd429SRaphael Isemann   int use = *cstring;
8*ed0a1414SWalter Erquinigo   void *void_empty_cstring = (void *)empty_cstring;
9aa7cd429SRaphael Isemann   return use; // break here
10aa7cd429SRaphael Isemann }
11