mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
8 lines
138 B
C
8 lines
138 B
C
// RUN: %clang_cc1 -emit-llvm -o - -fwritable-strings %s
|
|
|
|
int main() {
|
|
char *str = "abc";
|
|
str[0] = '1';
|
|
printf("%s", str);
|
|
}
|
|
|