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 Isemannint 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