blob: 00544996e3c1ac65cfdf09ce29b963e6b8b4a351 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Richard Smithaba8b362014-05-15 02:51:15 +00002// RUN: %clang_cc1 -fsyntax-only -verify -x c++ %s
Andy Gibbsc6e68da2012-10-19 12:44:48 +00003// expected-no-diagnostics
Steve Narofffbd09832007-07-19 01:06:55 +00004int main() {
5 char *s;
Richard Smithaba8b362014-05-15 02:51:15 +00006 s = (char []){"whatever"};
7 s = (char(*)){s};
Steve Narofffbd09832007-07-19 01:06:55 +00008}