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