blob: 808ca63f97d9eeaa4f9bb8c93f285eb05449c015 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// RUN: %clang_cc1 -fsyntax-only -verify -x c++ %s
// expected-no-diagnostics
int main(void) {
char *s;
s = (char []){"whatever"};
s = (char(*)){s};
}