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 Sambucvoid test(wchar_t *dst) { 9*f4a2713aSLionel Sambuc dst[0] = 0; // Ok. 10*f4a2713aSLionel Sambuc } 11