xref: /minix3/external/bsd/llvm/dist/clang/test/Sema/warn-write-strings.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -verify -fsyntax-only -fconst-strings %s
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc // PR4804
4*f4a2713aSLionel Sambuc char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
5*f4a2713aSLionel Sambuc 
6*f4a2713aSLionel Sambuc // PR7192
7*f4a2713aSLionel Sambuc #include <stddef.h>
test(wchar_t * dst)8*f4a2713aSLionel Sambuc void test(wchar_t *dst) {
9*f4a2713aSLionel Sambuc   dst[0] = 0;  // Ok.
10*f4a2713aSLionel Sambuc }
11