]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Sema/warn-write-strings.c
Vendor import of clang 3.9.0 release r280324:
[FreeBSD/FreeBSD.git] / test / Sema / warn-write-strings.c
1 // RUN: %clang_cc1 -verify -fsyntax-only -fconst-strings %s
2
3 // PR4804
4 char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
5
6 // PR7192
7 #include <stddef.h>
8 void test(wchar_t *dst) {
9   dst[0] = 0;  // Ok.
10 }