Commit 9afd1b0e authored by Bill Wendling's avatar Bill Wendling
Browse files

Revert part of previous commit. The change for this isn't in this branch.

llvm-svn: 113153
parent 31d398d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
// RUN: %clang_cc1 -verify -fsyntax-only -Wwrite-strings %s

// PR4804
char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'char const [4]' discards qualifiers}}

// PR7192
#include <stddef.h>