blob: 573c111306c14de1513d5b42969e77d02e8795fe [file] [log] [blame]
#include <cstdint>
const char cstring[15] = " \033\a\b\f\n\r\t\vaA09\0";
const char *empty_cstring = "";
int main() {
int use = *cstring;
void *void_empty_cstring = (void *)empty_cstring;
return use; // break here
}