1 // RUN: clang -emit-llvm -o %t -fwritable-strings %s 2 3 int main() { 4 char *str = "abc"; 5 str[0] = '1'; 6 printf("%s", str); 7 } 8 9